diff options
author | Jeff Garzik <jgarzik@pobox.com> | 2005-11-07 22:51:47 -0500 |
---|---|---|
committer | Jeff Garzik <jgarzik@pobox.com> | 2005-11-07 22:51:47 -0500 |
commit | 6b995751c2e851d2bc9c277b5884d0adb519e31d (patch) | |
tree | 7a15b41b5d8ce612915584a0773c670d5c0ab5b8 /drivers/video/skeletonfb.c | |
parent | 6c2f4267833f453156f8f439cc32eb4c92f357b4 (diff) | |
parent | d27ba47e7e8c466c18983a1779d611f82d6a354f (diff) |
Merge branch 'master'
Diffstat (limited to 'drivers/video/skeletonfb.c')
-rw-r--r-- | drivers/video/skeletonfb.c | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/drivers/video/skeletonfb.c b/drivers/video/skeletonfb.c index 7b43716ab665..a01e7ecc15ed 100644 --- a/drivers/video/skeletonfb.c +++ b/drivers/video/skeletonfb.c | |||
@@ -457,11 +457,8 @@ void xxxfb_imageblit(struct fb_info *p, const struct fb_image *image) | |||
457 | } | 457 | } |
458 | 458 | ||
459 | /** | 459 | /** |
460 | * xxxfb_cursor - REQUIRED function. If your hardware lacks support | 460 | * xxxfb_cursor - OPTIONAL. If your hardware lacks support |
461 | * for a cursor you can use the default cursor whose | 461 | * for a cursor, leave this field NULL. |
462 | * function is called soft_cursor. It will always | ||
463 | * work since it uses xxxfb_imageblit function which | ||
464 | * is required. | ||
465 | * | 462 | * |
466 | * @info: frame buffer structure that represents a single frame buffer | 463 | * @info: frame buffer structure that represents a single frame buffer |
467 | * @cursor: structure defining the cursor to draw. | 464 | * @cursor: structure defining the cursor to draw. |
@@ -663,7 +660,7 @@ static struct fb_ops xxxfb_ops = { | |||
663 | .fb_fillrect = xxxfb_fillrect, /* Needed !!! */ | 660 | .fb_fillrect = xxxfb_fillrect, /* Needed !!! */ |
664 | .fb_copyarea = xxxfb_copyarea, /* Needed !!! */ | 661 | .fb_copyarea = xxxfb_copyarea, /* Needed !!! */ |
665 | .fb_imageblit = xxxfb_imageblit, /* Needed !!! */ | 662 | .fb_imageblit = xxxfb_imageblit, /* Needed !!! */ |
666 | .fb_cursor = xxxfb_cursor, /* Needed !!! */ | 663 | .fb_cursor = xxxfb_cursor, /* Optional !!! */ |
667 | .fb_rotate = xxxfb_rotate, | 664 | .fb_rotate = xxxfb_rotate, |
668 | .fb_poll = xxxfb_poll, | 665 | .fb_poll = xxxfb_poll, |
669 | .fb_sync = xxxfb_sync, | 666 | .fb_sync = xxxfb_sync, |