--- linux/drivers/video/tgafb.c.old Sat Oct 7 09:06:37 2000 +++ linux/drivers/video/tgafb.c Sat Oct 7 09:36:04 2000 @@ -294,6 +294,11 @@ static void tgafb_update_palette(void); #endif +#ifdef MODULE +int init_module(void); +void cleanup_module(void); +#endif + /* * Chipset specific functions @@ -1010,7 +1015,8 @@ void cleanup_module(void) { - tgafb_cleanup(void); + struct fb_info *info; + tgafb_cleanup(info); } #endif /* MODULE */