svn commit: r261783 - head/sys/arm/arm
Warner Losh
imp at FreeBSD.org
Tue Feb 11 22:09:04 UTC 2014
Author: imp
Date: Tue Feb 11 22:09:03 2014
New Revision: 261783
URL: http://svnweb.freebsd.org/changeset/base/261783
Log:
Swap PA and VA so they are in the right registers...
Modified:
head/sys/arm/arm/locore.S
Modified: head/sys/arm/arm/locore.S
==============================================================================
--- head/sys/arm/arm/locore.S Tue Feb 11 22:05:21 2014 (r261782)
+++ head/sys/arm/arm/locore.S Tue Feb 11 22:09:03 2014 (r261783)
@@ -170,8 +170,8 @@ Lunmapped:
#if defined(SOCDEV_PA) && defined(SOCDEV_VA)
/* Create the custom map */
- ldr r1, =SOCDEV_VA
- ldr r2, =SOCDEV_PA
+ ldr r1, =SOCDEV_PA
+ ldr r2, =SOCDEV_VA
bl build_pagetables
#endif
More information about the svn-src-all
mailing list