forked from ~ljy/RK356X_SDK_RELEASE

hc
2023-12-08 01573e231f18eb2d99162747186f59511f56b64d
kernel/drivers/video/fbdev/atafb_iplan2p8.c
....@@ -10,7 +10,6 @@
1010 * more details.
1111 */
1212
13
-#include <linux/module.h>
1413 #include <linux/string.h>
1514 #include <linux/fb.h>
1615
....@@ -321,25 +320,3 @@
321320 if (width)
322321 fill8_2col((u8 *)dest, fgcolor, bgcolor, *data);
323322 }
324
-
325
-#ifdef MODULE
326
-MODULE_LICENSE("GPL");
327
-
328
-int init_module(void)
329
-{
330
- return 0;
331
-}
332
-
333
-void cleanup_module(void)
334
-{
335
-}
336
-#endif /* MODULE */
337
-
338
-
339
- /*
340
- * Visible symbols for modules
341
- */
342
-
343
-EXPORT_SYMBOL(atafb_iplan2p8_copyarea);
344
-EXPORT_SYMBOL(atafb_iplan2p8_fillrect);
345
-EXPORT_SYMBOL(atafb_iplan2p8_linefill);