Commit 4a4bb3d1 authored by Stephen Hemminger's avatar Stephen Hemminger Committed by Linus Torvalds

[PATCH] sdla non-module build fix.

Last round of changes broke sdla build if not a module.
parent 34574130
...@@ -1719,9 +1719,9 @@ static void __exit exit_sdla(void) ...@@ -1719,9 +1719,9 @@ static void __exit exit_sdla(void)
unregister_frad(devname); unregister_frad(devname);
} }
#endif
MODULE_LICENSE("GPL"); MODULE_LICENSE("GPL");
module_init(init_sdla); module_init(init_sdla);
module_exit(exit_sdla); module_exit(exit_sdla);
#endif
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment