From f7018c21350204c4cf628462f229d44d03545254 Mon Sep 17 00:00:00 2001 From: Tomi Valkeinen Date: Thu, 13 Feb 2014 15:31:38 +0200 Subject: video: move fbdev to drivers/video/fbdev The drivers/video directory is a mess. It contains generic video related files, directories for backlight, console, linux logo, lots of fbdev device drivers, fbdev framework files. Make some order into the chaos by creating drivers/video/fbdev directory, and move all fbdev related files there. No functionality is changed, although I guess it is possible that some subtle Makefile build order related issue could be created by this patch. Signed-off-by: Tomi Valkeinen Acked-by: Laurent Pinchart Acked-by: Geert Uytterhoeven Acked-by: Rob Clark Acked-by: Jingoo Han Acked-by: Daniel Vetter --- drivers/video/wmt_ge_rops.h | 28 ---------------------------- 1 file changed, 28 deletions(-) delete mode 100644 drivers/video/wmt_ge_rops.h (limited to 'drivers/video/wmt_ge_rops.h') diff --git a/drivers/video/wmt_ge_rops.h b/drivers/video/wmt_ge_rops.h deleted file mode 100644 index f73ec63..0000000 --- a/drivers/video/wmt_ge_rops.h +++ /dev/null @@ -1,28 +0,0 @@ -#ifdef CONFIG_FB_WMT_GE_ROPS - -extern void wmt_ge_fillrect(struct fb_info *info, - const struct fb_fillrect *rect); -extern void wmt_ge_copyarea(struct fb_info *info, - const struct fb_copyarea *area); -extern int wmt_ge_sync(struct fb_info *info); - -#else - -static inline int wmt_ge_sync(struct fb_info *p) -{ - return 0; -} - -static inline void wmt_ge_fillrect(struct fb_info *p, - const struct fb_fillrect *rect) -{ - sys_fillrect(p, rect); -} - -static inline void wmt_ge_copyarea(struct fb_info *p, - const struct fb_copyarea *area) -{ - sys_copyarea(p, area); -} - -#endif -- cgit v1.1