diff --git a/sys/dev/fb/fb_if.m b/sys/dev/fb/fb_if.m index 53e4563bb6f5..938cececa409 100644 --- a/sys/dev/fb/fb_if.m +++ b/sys/dev/fb/fb_if.m @@ -1,8 +1,16 @@ #include #include INTERFACE fb; +CODE { + static struct fb_info * + fb_default_getinfo(device_t dev) + { + return (NULL); + } +}; + METHOD struct fb_info * getinfo { device_t dev; -}; +} DEFAULT fb_default_getinfo;