All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] sn2 module fix
@ 2003-10-14 23:04 Jesse Barnes
  2003-10-14 23:06 ` Jesse Barnes
  0 siblings, 1 reply; 2+ messages in thread
From: Jesse Barnes @ 2003-10-14 23:04 UTC (permalink / raw)
  To: linux-ia64

Because we're the only platform with seperate in, out, and read
routines, we have to include the file that defines them in our machvec
header so that users of the functions will get the right defines and not
use the non-inline function variants (which are only necessary for
generic kernels).

Thanks,
Jesse

^ permalink raw reply	[flat|nested] 2+ messages in thread

* Re: [PATCH] sn2 module fix
  2003-10-14 23:04 [PATCH] sn2 module fix Jesse Barnes
@ 2003-10-14 23:06 ` Jesse Barnes
  0 siblings, 0 replies; 2+ messages in thread
From: Jesse Barnes @ 2003-10-14 23:06 UTC (permalink / raw)
  To: linux-ia64

On Tue, Oct 14, 2003 at 04:04:15PM -0700, Jesse Barnes wrote:
> Because we're the only platform with seperate in, out, and read
> routines, we have to include the file that defines them in our machvec
> header so that users of the functions will get the right defines and not
> use the non-inline function variants (which are only necessary for
> generic kernels).
> 
> Thanks,
> Jesse

How about I actually attach the patch?

Jesse

diff -Nru a/arch/ia64/sn/kernel/sn2/io.c b/arch/ia64/sn/kernel/sn2/io.c
--- a/arch/ia64/sn/kernel/sn2/io.c	Tue Oct 14 16:01:18 2003
+++ b/arch/ia64/sn/kernel/sn2/io.c	Tue Oct 14 16:01:18 2003
@@ -11,6 +11,8 @@
 
 #include <asm/sn/sn2/io.h>
 
+#ifdef CONFIG_IA64_GENERIC
+
 #undef __sn_inb
 #undef __sn_inw
 #undef __sn_inl
@@ -81,3 +83,5 @@
 {
 	return ___sn_readq (addr);
 }
+
+#endif
diff -Nru a/include/asm-ia64/machvec_sn2.h b/include/asm-ia64/machvec_sn2.h
--- a/include/asm-ia64/machvec_sn2.h	Tue Oct 14 16:01:18 2003
+++ b/include/asm-ia64/machvec_sn2.h	Tue Oct 14 16:01:18 2003
@@ -99,4 +99,6 @@
 #define platform_dma_sync_sg		sn_dma_sync_sg
 #define platform_dma_supported		sn_dma_supported
 
+#include <asm/sn/sn2/io.h>
+
 #endif /* _ASM_IA64_MACHVEC_SN2_H */

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2003-10-14 23:06 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2003-10-14 23:04 [PATCH] sn2 module fix Jesse Barnes
2003-10-14 23:06 ` Jesse Barnes

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.