From: James S. <jsi...@us...> - 2001-11-14 17:25:10
|
Update of /cvsroot/linuxconsole/ruby/linux/drivers/video In directory usw-pr-cvs1:/tmp/cvs-serv647 Modified Files: fbgen.c Log Message: Had to comment it out for now. Need to fix. This should be done per device and we need to pass in a struct fb_info that represents that device. Index: fbgen.c =================================================================== RCS file: /cvsroot/linuxconsole/ruby/linux/drivers/video/fbgen.c,v retrieving revision 1.24 retrieving revision 1.25 diff -u -d -r1.24 -r1.25 --- fbgen.c 2001/06/22 16:31:14 1.24 +++ fbgen.c 2001/11/14 17:25:07 1.25 @@ -139,15 +139,17 @@ continue; } +#if 0 if (!strncmp(this_opt, "inverse", 7)) { - fb_invert_cmaps(); + fb_invert_cmaps(info); #ifdef CONFIG_MTRR } else if (!strncmp(this_opt, "nomtrr", 6)) { - fb_disable_mtrrs(); + fb_disable_mtrrs(info); #endif } else { global_mode_option = this_opt; } +#endif } return 0; } |