forked from ~ljy/RK356X_SDK_RELEASE

hc
2024-10-09 244b2c5ca8b14627e4a17755e5922221e121c771
kernel/drivers/video/fbdev/atafb_iplan2p2.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
....@@ -269,25 +268,3 @@
269268 if (width)
270269 fill8_2col((u8 *)dest, fgcolor, bgcolor, *data);
271270 }
272
-
273
-#ifdef MODULE
274
-MODULE_LICENSE("GPL");
275
-
276
-int init_module(void)
277
-{
278
- return 0;
279
-}
280
-
281
-void cleanup_module(void)
282
-{
283
-}
284
-#endif /* MODULE */
285
-
286
-
287
- /*
288
- * Visible symbols for modules
289
- */
290
-
291
-EXPORT_SYMBOL(atafb_iplan2p2_copyarea);
292
-EXPORT_SYMBOL(atafb_iplan2p2_fillrect);
293
-EXPORT_SYMBOL(atafb_iplan2p2_linefill);