forked from ~ljy/RK356X_SDK_RELEASE

hc
2024-01-03 2f7c68cb55ecb7331f2381deb497c27155f32faf
kernel/drivers/video/fbdev/atafb_iplan2p4.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
....@@ -284,25 +283,3 @@
284283 if (width)
285284 fill8_2col((u8 *)dest, fgcolor, bgcolor, *data);
286285 }
287
-
288
-#ifdef MODULE
289
-MODULE_LICENSE("GPL");
290
-
291
-int init_module(void)
292
-{
293
- return 0;
294
-}
295
-
296
-void cleanup_module(void)
297
-{
298
-}
299
-#endif /* MODULE */
300
-
301
-
302
- /*
303
- * Visible symbols for modules
304
- */
305
-
306
-EXPORT_SYMBOL(atafb_iplan2p4_copyarea);
307
-EXPORT_SYMBOL(atafb_iplan2p4_fillrect);
308
-EXPORT_SYMBOL(atafb_iplan2p4_linefill);