aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/video/fbmem.c
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/video/fbmem.c')
-rw-r--r--drivers/video/fbmem.c25
1 files changed, 2 insertions, 23 deletions
diff --git a/drivers/video/fbmem.c b/drivers/video/fbmem.c
index e9af5e61018d..a2102a543ee7 100644
--- a/drivers/video/fbmem.c
+++ b/drivers/video/fbmem.c
@@ -1276,8 +1276,8 @@ static struct file_operations fb_fops = {
1276#endif 1276#endif
1277}; 1277};
1278 1278
1279static struct class *fb_class; 1279struct class *fb_class;
1280 1280EXPORT_SYMBOL(fb_class);
1281/** 1281/**
1282 * register_framebuffer - registers a frame buffer device 1282 * register_framebuffer - registers a frame buffer device
1283 * @fb_info: frame buffer info structure 1283 * @fb_info: frame buffer info structure
@@ -1489,27 +1489,6 @@ int fb_new_modelist(struct fb_info *info)
1489 return err; 1489 return err;
1490} 1490}
1491 1491
1492/**
1493 * fb_con_duit - user<->fbcon passthrough
1494 * @info: struct fb_info
1495 * @event: notification event to be passed to fbcon
1496 * @data: private data
1497 *
1498 * DESCRIPTION
1499 * This function is an fbcon-user event passing channel
1500 * which bypasses fbdev. This is hopefully temporary
1501 * until a user interface for fbcon is created
1502 */
1503int fb_con_duit(struct fb_info *info, int event, void *data)
1504{
1505 struct fb_event evnt;
1506
1507 evnt.info = info;
1508 evnt.data = data;
1509
1510 return blocking_notifier_call_chain(&fb_notifier_list, event, &evnt);
1511}
1512
1513static char *video_options[FB_MAX]; 1492static char *video_options[FB_MAX];
1514static int ofonly; 1493static int ofonly;
1515 1494