Skip to content
Snippets Groups Projects
Commit 4d64c8e0 authored by Hans de Goede's avatar Hans de Goede Committed by Bartlomiej Zolnierkiewicz
Browse files

dummycon: Stop exporting dummycon_[un]register_output_notifier


Now that we only allow FRAMEBUFFER_CONSOLE_DEFERRED_TAKEOVER when
fbdev+fbcon are builtin exporting these is no longer necessary.

Signed-off-by: default avatarHans de Goede <hdegoede@redhat.com>
Signed-off-by: default avatarBartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
parent bedb38fc
No related branches found
No related tags found
No related merge requests found
...@@ -38,13 +38,11 @@ void dummycon_register_output_notifier(struct notifier_block *nb) ...@@ -38,13 +38,11 @@ void dummycon_register_output_notifier(struct notifier_block *nb)
if (dummycon_putc_called) if (dummycon_putc_called)
nb->notifier_call(nb, 0, NULL); nb->notifier_call(nb, 0, NULL);
} }
EXPORT_SYMBOL_GPL(dummycon_register_output_notifier);
void dummycon_unregister_output_notifier(struct notifier_block *nb) void dummycon_unregister_output_notifier(struct notifier_block *nb)
{ {
raw_notifier_chain_unregister(&dummycon_output_nh, nb); raw_notifier_chain_unregister(&dummycon_output_nh, nb);
} }
EXPORT_SYMBOL_GPL(dummycon_unregister_output_notifier);
static void dummycon_putc(struct vc_data *vc, int c, int ypos, int xpos) static void dummycon_putc(struct vc_data *vc, int c, int ypos, int xpos)
{ {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment