From: Paul M. <le...@us...> - 2001-11-25 04:44:20
|
Update of /cvsroot/linuxconsole/ruby/linux/include/linux In directory usw-pr-cvs1:/tmp/cvs-serv2668/include/linux Modified Files: fb.h Log Message: Add an fb_getcolreg to the fb_ops.. call it from within the get_cmap(). Index: fb.h =================================================================== RCS file: /cvsroot/linuxconsole/ruby/linux/include/linux/fb.h,v retrieving revision 1.43 retrieving revision 1.44 diff -u -d -r1.43 -r1.44 --- fb.h 2001/11/14 17:10:40 1.43 +++ fb.h 2001/11/25 04:44:16 1.44 @@ -332,6 +332,9 @@ int (*fb_set_par)(struct fb_info *info); /* cursor control */ int (*fb_cursor)(struct fb_info *info, struct fbcursor *cursor); + /* get color register */ + int (*fb_getcolreg)(unsigned regno, unsigned *reg, unsigned *green, + unsigned *blue, unsigned *transp, struct fb_info *info); /* set color register */ int (*fb_setcolreg)(unsigned regno, unsigned red, unsigned green, unsigned blue, unsigned transp, struct fb_info *info); |