Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 53d8be5c authored by Pat Gefre's avatar Pat Gefre Committed by Linus Torvalds
Browse files

[PATCH] Altix ioc3: correct export call



Use EXPORT_SYMBOL_GPL in ioc3 shim layer.

Signed-off-by: default avatarPatrick Gefre <pfg@sgi.com>
Signed-off-by: default avatarAndrew Morton <akpm@osdl.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@osdl.org>
parent 172411f1
Loading
Loading
Loading
Loading
+6 −6
Original line number Diff line number Diff line
@@ -843,9 +843,9 @@ MODULE_AUTHOR("Stanislaw Skowronek <skylark@linux-mips.org>");
MODULE_DESCRIPTION("PCI driver for SGI IOC3");
MODULE_LICENSE("GPL");

EXPORT_SYMBOL(ioc3_register_submodule);
EXPORT_SYMBOL(ioc3_unregister_submodule);
EXPORT_SYMBOL(ioc3_ack);
EXPORT_SYMBOL(ioc3_gpcr_set);
EXPORT_SYMBOL(ioc3_disable);
EXPORT_SYMBOL(ioc3_enable);
EXPORT_SYMBOL_GPL(ioc3_register_submodule);
EXPORT_SYMBOL_GPL(ioc3_unregister_submodule);
EXPORT_SYMBOL_GPL(ioc3_ack);
EXPORT_SYMBOL_GPL(ioc3_gpcr_set);
EXPORT_SYMBOL_GPL(ioc3_disable);
EXPORT_SYMBOL_GPL(ioc3_enable);