svn commit: r302280 - head/sys/powerpc/powerpc
Nathan Whitehorn
nwhitehorn at FreeBSD.org
Wed Jun 29 16:34:57 UTC 2016
Author: nwhitehorn
Date: Wed Jun 29 16:34:56 2016
New Revision: 302280
URL: https://svnweb.freebsd.org/changeset/base/302280
Log:
Fix fat-fingering: #if AIM should have been #ifdef AIM to avoid failures on
Book-E kernels.
Approved by: re (gjb)
Pointy hat to: nwhitehorn
Modified:
head/sys/powerpc/powerpc/machdep.c
Modified: head/sys/powerpc/powerpc/machdep.c
==============================================================================
--- head/sys/powerpc/powerpc/machdep.c Wed Jun 29 14:40:43 2016 (r302279)
+++ head/sys/powerpc/powerpc/machdep.c Wed Jun 29 16:34:56 2016 (r302280)
@@ -251,7 +251,7 @@ powerpc_init(vm_offset_t fdt, vm_offset_
if (mdp == (void *)0x65504150)
mdp = NULL;
-#if AIM
+#ifdef AIM
/*
* If running from an FDT, make sure we are in real mode to avoid
* tromping on firmware page tables. Everything in the kernel assumes
More information about the svn-src-head
mailing list