Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 6 Apr 2014 06:18:44 +0000 (UTC)
From:      Justin Hibbits <jhibbits@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r264189 - head/sys/powerpc/include
Message-ID:  <201404060618.s366IiRE023110@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: jhibbits
Date: Sun Apr  6 06:18:43 2014
New Revision: 264189
URL: http://svnweb.freebsd.org/changeset/base/264189

Log:
  Correct the SRR1 mask, it's 10-15 not 10-11.
  
  X-MFC-with:	r263464,r263752

Modified:
  head/sys/powerpc/include/psl.h

Modified: head/sys/powerpc/include/psl.h
==============================================================================
--- head/sys/powerpc/include/psl.h	Sun Apr  6 05:45:43 2014	(r264188)
+++ head/sys/powerpc/include/psl.h	Sun Apr  6 06:18:43 2014	(r264189)
@@ -96,7 +96,7 @@
 #else
 #define	PSL_KERNSET	(PSL_EE | PSL_ME | PSL_IR | PSL_DR | PSL_RI)
 #endif
-#define PSL_SRR1_MASK	0x78300000UL	/* Bits 1-4, 10-15 (ppc32), 33-36, 42-47 (ppc64) */
+#define PSL_SRR1_MASK	0x783f0000UL	/* Bits 1-4, 10-15 (ppc32), 33-36, 42-47 (ppc64) */
 #endif
 
 #define	PSL_USERSET	(PSL_KERNSET | PSL_PR)



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201404060618.s366IiRE023110>