Date: Fri, 19 Nov 2010 20:23:01 +0000 (UTC) From: Attilio Rao <attilio@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-8@freebsd.org Subject: svn commit: r215545 - stable/8/sys/x86/x86 Message-ID: <201011192023.oAJKN1LZ088269@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
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>
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201011192023.oAJKN1LZ088269>