kernel/drivers/video/fbdev/atafb_mfb.c
.. .. @@ -9,7 +9,6 @@ 9 9 * more details. 10 10 */ 11 11 12 -#include <linux/module.h>13 12 #include <linux/string.h> 14 13 #include <linux/fb.h> 15 14 .. .. @@ -88,25 +87,3 @@ 88 87 *dest++ = *data++; 89 88 } 90 89 } 91 -92 -#ifdef MODULE93 -MODULE_LICENSE("GPL");94 -95 -int init_module(void)96 -{97 - return 0;98 -}99 -100 -void cleanup_module(void)101 -{102 -}103 -#endif /* MODULE */104 -105 -106 - /*107 - * Visible symbols for modules108 - */109 -110 -EXPORT_SYMBOL(atafb_mfb_copyarea);111 -EXPORT_SYMBOL(atafb_mfb_fillrect);112 -EXPORT_SYMBOL(atafb_mfb_linefill);