dect
/
linux-2.6
Archived
13
0
Fork 0

[PATCH] Altix ioc3: correct export call

Use EXPORT_SYMBOL_GPL in ioc3 shim layer.

Signed-off-by: Patrick Gefre <pfg@sgi.com>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
This commit is contained in:
Pat Gefre 2006-02-01 03:06:41 -08:00 committed by Linus Torvalds
parent 172411f10c
commit 53d8be5c14
1 changed files with 6 additions and 6 deletions

View File

@ -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);