Skip to content

Commit

Permalink
[PATCH] Altix ioc3: correct export call
Browse files Browse the repository at this point in the history
Use EXPORT_SYMBOL_GPL in ioc3 shim layer.

Signed-off-by: Patrick Gefre <[email protected]>
Signed-off-by: Andrew Morton <[email protected]>
Signed-off-by: Linus Torvalds <[email protected]>
  • Loading branch information
Pat Gefre authored and Linus Torvalds committed Feb 1, 2006
1 parent 172411f commit 53d8be5
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions drivers/sn/ioc3.c
Original file line number Diff line number Diff line change
Expand Up @@ -843,9 +843,9 @@ MODULE_AUTHOR("Stanislaw Skowronek <[email protected]>");
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);

0 comments on commit 53d8be5

Please sign in to comment.