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().
#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
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");