]> git.hungrycats.org Git - linux/commitdiff
[ARM] Cleanup MODULE_* macros
authorRussell King <rmk@flint.arm.linux.org.uk>
Fri, 27 Feb 2004 10:16:19 +0000 (10:16 +0000)
committerRussell King <rmk@flint.arm.linux.org.uk>
Fri, 27 Feb 2004 10:16:19 +0000 (10:16 +0000)
Thanks to Adrian Bunk.

Remove kernel 2.0 #ifdef's from arm code, and move MODULE_* to
the end of the file.  Add an appropriate MODULE_LICENSE().

arch/arm/nwfpe/fpmodule.c

index 93848178b63ccff693c8f639553a66447d118510..7c417158d6b25af11da703a989f3645a1c7c5b90 100644 (file)
 
 #ifdef MODULE
 void fp_send_sig(unsigned long sig, struct task_struct *p, int priv);
-#if LINUX_VERSION_CODE > 0x20115
-MODULE_AUTHOR("Scott Bambrough <scottb@rebel.com>");
-MODULE_DESCRIPTION("NWFPE floating point emulator (" NWFPE_BITS " precision)");
-#endif
-
 #else
 #define fp_send_sig    send_sig
 #define kern_fp_enter  fp_enter
@@ -172,3 +167,7 @@ void float_raise(signed char flags)
 
 module_init(fpe_init);
 module_exit(fpe_exit);
+
+MODULE_AUTHOR("Scott Bambrough <scottb@rebel.com>");
+MODULE_DESCRIPTION("NWFPE floating point emulator (" NWFPE_BITS " precision)");
+MODULE_LICENSE("GPL");