From f7df5064277c878b9ba8ce8bfd5041a56c1726b6 Mon Sep 17 00:00:00 2001 From: "Antonino A. Daplas" Date: Tue, 8 May 2007 00:39:00 -0700 Subject: [PATCH] --- yaml --- r: 54928 b: refs/heads/master c: d6774935b61f99024121107d4ebb9d11b58052e6 h: refs/heads/master v: v3 --- [refs] | 2 +- trunk/drivers/video/Kconfig | 6 +++--- trunk/drivers/video/hecubafb.c | 6 +++--- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/[refs] b/[refs] index ede5e9dc8d4f..7a87fc051b83 100644 --- a/[refs] +++ b/[refs] @@ -1,2 +1,2 @@ --- -refs/heads/master: 922e6f9afa137ac69624389b1939e6c31b1abf2d +refs/heads/master: d6774935b61f99024121107d4ebb9d11b58052e6 diff --git a/trunk/drivers/video/Kconfig b/trunk/drivers/video/Kconfig index 1bbd10c36894..93d713d6c5a6 100644 --- a/trunk/drivers/video/Kconfig +++ b/trunk/drivers/video/Kconfig @@ -602,9 +602,9 @@ config FB_IMAC config FB_HECUBA tristate "Hecuba board support" depends on FB && X86 && MMU - select FB_CFB_FILLRECT - select FB_CFB_COPYAREA - select FB_CFB_IMAGEBLIT + select FB_SYS_FILLRECT + select FB_SYS_COPYAREA + select FB_SYS_IMAGEBLIT select FB_DEFERRED_IO help This enables support for the Hecuba board. This driver was tested diff --git a/trunk/drivers/video/hecubafb.c b/trunk/drivers/video/hecubafb.c index dc12e2d5489e..0ade72590998 100644 --- a/trunk/drivers/video/hecubafb.c +++ b/trunk/drivers/video/hecubafb.c @@ -238,7 +238,7 @@ static void hecubafb_fillrect(struct fb_info *info, { struct hecubafb_par *par = info->par; - cfb_fillrect(info, rect); + sys_fillrect(info, rect); hecubafb_dpy_update(par); } @@ -248,7 +248,7 @@ static void hecubafb_copyarea(struct fb_info *info, { struct hecubafb_par *par = info->par; - cfb_copyarea(info, area); + sys_copyarea(info, area); hecubafb_dpy_update(par); } @@ -258,7 +258,7 @@ static void hecubafb_imageblit(struct fb_info *info, { struct hecubafb_par *par = info->par; - cfb_imageblit(info, image); + sys_imageblit(info, image); hecubafb_dpy_update(par); }