Commit 9b8b641f authored by Daniel Vetter's avatar Daniel Vetter
Browse files

fbcon: Drop EXPORT_SYMBOL



Every since

commit 6104c370
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: default avatarThomas Zimmermann <tzimmermann@suse.de>
Signed-off-by: default avatarDaniel 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
parent 39aead83
Loading
Loading
Loading
Loading
+0 −3
Original line number Diff line number Diff line
@@ -404,6 +404,3 @@ void fbcon_set_bitops(struct fbcon_ops *ops)
	if (ops->rotate)
		fbcon_set_rotate(ops);
}

EXPORT_SYMBOL(fbcon_set_bitops);
+0 −1
Original line number Diff line number Diff line
@@ -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);
+0 −1
Original line number Diff line number Diff line
@@ -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);
+0 −1
Original line number Diff line number Diff line
@@ -109,4 +109,3 @@ void fbcon_set_rotate(struct fbcon_ops *ops)
		break;
	}
}
EXPORT_SYMBOL(fbcon_set_rotate);
+0 −1
Original line number Diff line number Diff line
@@ -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);
Loading