fbcon: Drop EXPORT_SYMBOL
authorDaniel Vetter <daniel.vetter@ffwll.ch>
Thu, 29 Oct 2020 10:14:27 +0000 (11:14 +0100)
committerDaniel Vetter <daniel.vetter@ffwll.ch>
Tue, 17 Nov 2020 10:00:43 +0000 (11:00 +0100)
Every since

commit 73b608fda77241b77c764de16c4d9275c245717b
Author: Daniel Vetter <daniel.vetter@ffwll.ch>
Date:   Tue Aug 1 17:32:07 2017 +0200

    fbcon: Make fbcon a built-time depency for fbdev

these are no longer distinct loadable modules, so exporting symbols is
kinda pointless.

Acked-by: Thomas Zimmermann <tzimmermann@suse.de>
Signed-off-by: Daniel Vetter <daniel.vetter@intel.com>
Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Cc: Jiri Slaby <jirislaby@kernel.org>
Cc: Daniel Vetter <daniel.vetter@ffwll.ch>
Cc: Tetsuo Handa <penguin-kernel@I-love.SAKURA.ne.jp>
Cc: Helge Deller <deller@gmx.de>
Cc: Peilin Ye <yepeilin.cs@gmail.com>
Link: https://patchwork.freedesktop.org/patch/msgid/20201029101428.4058311-2-daniel.vetter@ffwll.ch
drivers/video/fbdev/core/bitblit.c
drivers/video/fbdev/core/fbcon_ccw.c
drivers/video/fbdev/core/fbcon_cw.c
drivers/video/fbdev/core/fbcon_rotate.c
drivers/video/fbdev/core/fbcon_ud.c
drivers/video/fbdev/core/softcursor.c
drivers/video/fbdev/core/tileblit.c

index 9725ecd1255ba00503c79c55639b94308e0e0ec2..f98e8f298bc19a0ae63a8d493ae2e316d8e2e38a 100644 (file)
@@ -404,6 +404,3 @@ void fbcon_set_bitops(struct fbcon_ops *ops)
        if (ops->rotate)
                fbcon_set_rotate(ops);
 }
-
-EXPORT_SYMBOL(fbcon_set_bitops);
-
index bbd869efd03bc94ae9387d4355eee28a280fb9c2..9cd2c4b05c3286b12cfe4ac2bb186a3f4be1c89a 100644 (file)
@@ -409,4 +409,3 @@ void fbcon_rotate_ccw(struct fbcon_ops *ops)
        ops->cursor = ccw_cursor;
        ops->update_start = ccw_update_start;
 }
-EXPORT_SYMBOL(fbcon_rotate_ccw);
index a34cbe8e98744b12ffee9e45fa834f2d7aab8a4f..88d89fad3f05e324f555023eb0b27dec13c47100 100644 (file)
@@ -392,4 +392,3 @@ void fbcon_rotate_cw(struct fbcon_ops *ops)
        ops->cursor = cw_cursor;
        ops->update_start = cw_update_start;
 }
-EXPORT_SYMBOL(fbcon_rotate_cw);
index ef1d421c261a815e51cb685ec875d195e7753b29..ec3c883400f7b8c2639c902a52772b7e800e696b 100644 (file)
@@ -109,4 +109,3 @@ void fbcon_set_rotate(struct fbcon_ops *ops)
                break;
        }
 }
-EXPORT_SYMBOL(fbcon_set_rotate);
index 199cbc7abe35315d5adb9c79aaa29ca20eedcd32..8d5e66b1bdfbb7dbe8262b77708b488a421b4b79 100644 (file)
@@ -436,4 +436,3 @@ void fbcon_rotate_ud(struct fbcon_ops *ops)
        ops->cursor = ud_cursor;
        ops->update_start = ud_update_start;
 }
-EXPORT_SYMBOL(fbcon_rotate_ud);
index fc93f254498e2aa5b0566d1e08052ac31d6ebb93..29e5b21cf373e5307d0ad6b0a79bdbfe858679aa 100644 (file)
@@ -74,5 +74,3 @@ int soft_cursor(struct fb_info *info, struct fb_cursor *cursor)
        info->fbops->fb_imageblit(info, image);
        return 0;
 }
-
-EXPORT_SYMBOL(soft_cursor);
index e2cc0cb6d50e6aa6fa47f417023ef709792ca962..2768eff247ba4623dd0beaa8e2d96926c472f519 100644 (file)
@@ -149,5 +149,3 @@ void fbcon_set_tileops(struct vc_data *vc, struct fb_info *info)
                info->tileops->fb_settile(info, &map);
        }
 }
-
-EXPORT_SYMBOL(fbcon_set_tileops);