diff options
author | jhb <jhb@FreeBSD.org> | 2010-11-02 20:16:41 +0000 |
---|---|---|
committer | jhb <jhb@FreeBSD.org> | 2010-11-02 20:16:41 +0000 |
commit | db8115405e9cedda133d4e8a82ec30f3a745c356 (patch) | |
tree | e67ec5b39889de923581c7175414fbc1b43df018 | |
parent | 6aafe24a5f1955338a76273a8a01f02fdab09334 (diff) | |
download | FreeBSD-src-db8115405e9cedda133d4e8a82ec30f3a745c356.zip FreeBSD-src-db8115405e9cedda133d4e8a82ec30f3a745c356.tar.gz |
Cosmetic change to revert one of my earlier ones.
#if __i386__ && PAE is identical to just #if PAE since PAE is only a valid
option for i386.
Submitted by: attilio
-rw-r--r-- | sys/x86/x86/nexus.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/x86/x86/nexus.c b/sys/x86/x86/nexus.c index 60c3304..8ed2c35 100644 --- a/sys/x86/x86/nexus.c +++ b/sys/x86/x86/nexus.c @@ -728,7 +728,7 @@ ram_attach(device_t dev) * segment is 0. */ for (rid = 0, p = dump_avail; p[1] != 0; rid++, p += 2) { -#if defined(__i386__) && defined(PAE) +#ifdef PAE /* * Resources use long's to track resources, so we can't * include memory regions above 4GB. |