Symbol: fb_dev
sys/arch/evbppc/explora/dev/fb_elb.c
107
static void s3_getgeometry(struct fb_dev *, int *, int *);
sys/arch/evbppc/explora/dev/fb_elb.c
108
static void s3_putcmap(struct fb_dev *, const struct fb_cmap *);
sys/arch/evbppc/explora/dev/fb_elb.c
109
static void s3_copy(struct fb_dev *, int, int, int, int, int, int, int);
sys/arch/evbppc/explora/dev/fb_elb.c
110
static void s3_fill(struct fb_dev *, int, int, int, int, int, int);
sys/arch/evbppc/explora/dev/fb_elb.c
112
static struct fb_dev console_dev;
sys/arch/evbppc/explora/dev/fb_elb.c
191
sc->sc_fb = kmem_zalloc(sizeof(struct fb_dev), KM_SLEEP);
sys/arch/evbppc/explora/dev/fb_elb.c
221
fb_init(struct fb_dev *fb, int width, int height)
sys/arch/evbppc/explora/dev/fb_elb.c
411
struct fb_dev *fb = ri->ri_hw;
sys/arch/evbppc/explora/dev/fb_elb.c
423
struct fb_dev *fb = ri->ri_hw;
sys/arch/evbppc/explora/dev/fb_elb.c
437
struct fb_dev *fb = ri->ri_hw;
sys/arch/evbppc/explora/dev/fb_elb.c
450
struct fb_dev *fb = ri->ri_hw;
sys/arch/evbppc/explora/dev/fb_elb.c
503
s3_getgeometry(struct fb_dev *fb, int *width, int *height)
sys/arch/evbppc/explora/dev/fb_elb.c
526
s3_putcmap(struct fb_dev *fb, const struct fb_cmap *cmap)
sys/arch/evbppc/explora/dev/fb_elb.c
541
s3_copy(struct fb_dev *fb, int src_x, int src_y, int dest_x, int dest_y,
sys/arch/evbppc/explora/dev/fb_elb.c
580
s3_fill(struct fb_dev *fb, int x, int y, int width, int height,
sys/arch/evbppc/explora/dev/fb_elb.c
69
struct fb_dev *sc_fb;
sys/arch/evbppc/explora/dev/fb_elb.c
87
static void fb_init(struct fb_dev *, int, int);
sys/dev/sun/fb.c
110
while (fbl != NULL && fbl->fb_dev != NULL) {
sys/dev/sun/fb.c
111
(*fbl->fb_dev->fb_driver->fbd_unblank)(fbl->fb_dev->fb_device);
sys/dev/sun/fb.c
170
fblist.fb_dev != NULL) {
sys/dev/sun/fb.c
179
fbl->fb_dev = fblist.fb_dev;
sys/dev/sun/fb.c
181
aprint_normal_dev(fbl->fb_dev->fb_device,
sys/dev/sun/fb.c
183
aprint_normal_dev(fbl->fb_dev->fb_device,
sys/dev/sun/fb.c
185
fblist.fb_dev = fb;
sys/dev/sun/fb.c
190
if (fblist.fb_dev != NULL) {
sys/dev/sun/fb.c
200
fbl->fb_dev = fb;
sys/dev/sun/fb.c
202
aprint_normal_dev(fbl->fb_dev->fb_device,
sys/dev/sun/fb.c
216
if (fbl == NULL || fbl->fb_dev == NULL)
sys/dev/sun/fb.c
219
nunit = device_unit(fbl->fb_dev->fb_device);
sys/dev/sun/fb.c
220
return (fbl->fb_dev->fb_driver->fbd_open)(makedev(0, nunit), flags,
sys/dev/sun/fb.c
233
if (fbl == NULL || fbl->fb_dev == NULL)
sys/dev/sun/fb.c
236
nunit = device_unit(fbl->fb_dev->fb_device);
sys/dev/sun/fb.c
237
return (fbl->fb_dev->fb_driver->fbd_close)(makedev(0, nunit), flags,
sys/dev/sun/fb.c
250
if (fbl == NULL || fbl->fb_dev == NULL)
sys/dev/sun/fb.c
253
nunit = device_unit(fbl->fb_dev->fb_device);
sys/dev/sun/fb.c
254
return (fbl->fb_dev->fb_driver->fbd_ioctl)(makedev(0, nunit), cmd,
sys/dev/sun/fb.c
267
if (fbl == NULL || fbl->fb_dev == NULL)
sys/dev/sun/fb.c
270
nunit = device_unit(fbl->fb_dev->fb_device);
sys/dev/sun/fb.c
271
return (fbl->fb_dev->fb_driver->fbd_poll)(makedev(0, nunit), events,
sys/dev/sun/fb.c
284
if (fbl == NULL || fbl->fb_dev == NULL)
sys/dev/sun/fb.c
287
nunit = device_unit(fbl->fb_dev->fb_device);
sys/dev/sun/fb.c
288
return (fbl->fb_dev->fb_driver->fbd_kqfilter)(makedev(0, nunit), kn);
sys/dev/sun/fb.c
300
if (fbl == NULL || fbl->fb_dev == NULL)
sys/dev/sun/fb.c
303
nunit = device_unit(fbl->fb_dev->fb_device);
sys/dev/sun/fb.c
304
paddr_t (*map)(dev_t, off_t, int) = fbl->fb_dev->fb_driver->fbd_mmap;
sys/dev/sun/fb.c
73
struct fbdevice *fb_dev;