Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 54928
b: refs/heads/master
c: d677493
h: refs/heads/master
v: v3
  • Loading branch information
Antonino A. Daplas authored and Linus Torvalds committed May 8, 2007
1 parent 62ba6e2 commit f7df506
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 922e6f9afa137ac69624389b1939e6c31b1abf2d
refs/heads/master: d6774935b61f99024121107d4ebb9d11b58052e6
6 changes: 3 additions & 3 deletions trunk/drivers/video/Kconfig
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
6 changes: 3 additions & 3 deletions trunk/drivers/video/hecubafb.c
Original file line number Diff line number Diff line change
Expand Up @@ -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);
}
Expand All @@ -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);
}
Expand All @@ -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);
}
Expand Down

0 comments on commit f7df506

Please sign in to comment.