summaryrefslogtreecommitdiff
path: root/sys/dev/fb
diff options
context:
space:
mode:
authorEmmanuel Vadot <manu@FreeBSD.org>2022-06-21 13:52:49 +0000
committerEmmanuel Vadot <manu@FreeBSD.org>2022-06-21 13:52:49 +0000
commit3cbf6518d6eea08e0fbe6d7c609debac5ab31992 (patch)
tree241a987d063696feceb2a7d407bf7b04030c8f01 /sys/dev/fb
parentb256d2dc0c2f00ce41a7b9c43d180a28bef4bb86 (diff)
Diffstat (limited to 'sys/dev/fb')
-rw-r--r--sys/dev/fb/fb_if.m10
1 files changed, 9 insertions, 1 deletions
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
@@ -3,6 +3,14 @@
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;