2.2.11 - fix for math-emu.o module on DEC alpha

Christian Groessler (cpg@aladdin.de)
Fri, 13 Aug 1999 12:44:18 +0200


Hi,

I needed to make the following changes to build the math-emu
as module on Alpha:

--------------
--- linux-2.2.11/arch/alpha/kernel/alpha_ksyms.c.org Thu Jun 17 01:02:45 1999
+++ linux-2.2.11/arch/alpha/kernel/alpha_ksyms.c Thu Aug 12 18:48:13 1999
@@ -105,6 +105,8 @@
EXPORT_SYMBOL(start_thread);
EXPORT_SYMBOL(alpha_read_fp_reg);
EXPORT_SYMBOL(alpha_write_fp_reg);
+EXPORT_SYMBOL(alpha_read_fp_reg_s);
+EXPORT_SYMBOL(alpha_write_fp_reg_s);

/* In-kernel system calls. */
EXPORT_SYMBOL(__kernel_thread);
--- linux-2.2.11/include/asm-alpha/fpu.h.org Tue Aug 10 23:05:56 1999
+++ linux-2.2.11/include/asm-alpha/fpu.h Thu Aug 12 18:57:08 1999
@@ -139,6 +139,8 @@

extern unsigned long alpha_read_fp_reg (unsigned long reg);
extern void alpha_write_fp_reg (unsigned long reg, unsigned long val);
+extern unsigned long alpha_read_fp_reg_s (unsigned long reg);
+extern void alpha_write_fp_reg_s (unsigned long reg, unsigned long val);

#endif /* __KERNEL__ */
--------------

regards,
chris

-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.rutgers.edu
Please read the FAQ at http://www.tux.org/lkml/