svn commit: r215545 - stable/8/sys/x86/x86

Attilio Rao attilio at FreeBSD.org
Fri Nov 19 20:23:01 UTC 2010


Author: attilio
Date: Fri Nov 19 20:23:01 2010
New Revision: 215545
URL: http://svn.freebsd.org/changeset/base/215545

Log:
  Fix-up r215539 by specifying correctly the ISA headers are they are not
  shared on STABLE_8.
  
  Reported by:	kib

Modified:
  stable/8/sys/x86/x86/nexus.c

Modified: stable/8/sys/x86/x86/nexus.c
==============================================================================
--- stable/8/sys/x86/x86/nexus.c	Fri Nov 19 19:43:56 2010	(r215544)
+++ stable/8/sys/x86/x86/nexus.c	Fri Nov 19 20:23:01 2010	(r215545)
@@ -76,10 +76,12 @@ __FBSDID("$FreeBSD$");
 
 #ifdef DEV_ISA
 #include <isa/isavar.h>
-#ifdef PC98
-#include <pc98/cbus/cbus.h>
+#ifdef __amd64__
+#include <amd64/isa/isa.h>
+#elif defined(__i386__)
+#include <i386/isa/isa.h>
 #else
-#include <x86/isa/isa.h>
+#include <pc98/cbus/cbus.h>
 #endif
 #endif
 #include <sys/rtprio.h>


More information about the svn-src-all mailing list