1#include <sys/bus.h>
2#include <sys/fbio.h>
3
4INTERFACE fb;
5
6CODE {
7 static struct fb_info *
8 fb_default_getinfo(device_t dev)
9 {
10 return (NULL);
11 }
12};
13
14METHOD struct fb_info * getinfo {
15 device_t dev;
16} DEFAULT fb_default_getinfo;
17