diff mbox

console: dummycon: export dummycon_[un]register_output_notifier

Message ID 20180629093627.14620-1-hdegoede@redhat.com (mailing list archive)
State New, archived
Headers show

Commit Message

Hans de Goede June 29, 2018, 9:36 a.m. UTC
Export dummycon_[un]register_output_notifier, the fbcon code needs this
and may be build as a module.

Fixes: 83d83bebf401 ("console/fbcon: Add support for deferred console takeover")
Cc: Stephen Rothwell <sfr@canb.auug.org.au>
Reported-by: Stephen Rothwell <sfr@canb.auug.org.au>
Signed-off-by: Hans de Goede <hdegoede@redhat.com>
---
 drivers/video/console/dummycon.c | 2 ++
 1 file changed, 2 insertions(+)

Comments

Bartlomiej Zolnierkiewicz June 29, 2018, 10:06 a.m. UTC | #1
On Friday, June 29, 2018 11:36:27 AM Hans de Goede wrote:
> Export dummycon_[un]register_output_notifier, the fbcon code needs this
> and may be build as a module.
> 
> Fixes: 83d83bebf401 ("console/fbcon: Add support for deferred console takeover")
> Cc: Stephen Rothwell <sfr@canb.auug.org.au>
> Reported-by: Stephen Rothwell <sfr@canb.auug.org.au>
> Signed-off-by: Hans de Goede <hdegoede@redhat.com>

Applied to fbdev-for-next, thanks.

Best regards,
--
Bartlomiej Zolnierkiewicz
Samsung R&D Institute Poland
Samsung Electronics
Hans de Goede June 29, 2018, 10:10 a.m. UTC | #2
Hi,

On 29-06-18 12:06, Bartlomiej Zolnierkiewicz wrote:
> On Friday, June 29, 2018 11:36:27 AM Hans de Goede wrote:
>> Export dummycon_[un]register_output_notifier, the fbcon code needs this
>> and may be build as a module.
>>
>> Fixes: 83d83bebf401 ("console/fbcon: Add support for deferred console takeover")
>> Cc: Stephen Rothwell <sfr@canb.auug.org.au>
>> Reported-by: Stephen Rothwell <sfr@canb.auug.org.au>
>> Signed-off-by: Hans de Goede <hdegoede@redhat.com>
> 
> Applied to fbdev-for-next, thanks.

You're welcome. And sorry about this, I should have gotten this right
from the start.

Regards,

Hans
diff mbox

Patch

diff --git a/drivers/video/console/dummycon.c b/drivers/video/console/dummycon.c
index 45ad925ad5f8..0254251fdd79 100644
--- a/drivers/video/console/dummycon.c
+++ b/drivers/video/console/dummycon.c
@@ -38,11 +38,13 @@  void dummycon_register_output_notifier(struct notifier_block *nb)
 	if (dummycon_putc_called)
 		nb->notifier_call(nb, 0, NULL);
 }
+EXPORT_SYMBOL_GPL(dummycon_register_output_notifier);
 
 void dummycon_unregister_output_notifier(struct notifier_block *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)
 {