summaryrefslogtreecommitdiff
path: root/include/asm-arm
diff options
context:
space:
mode:
authorMarc-Andre Hebert <marcandreh@humanware.ca>2006-03-30 10:24:08 +0100
committerRussell King <rmk+kernel@arm.linux.org.uk>2006-03-30 10:24:08 +0100
commitfd88dd740ad7b92cd399b6116dfa9486b36ffaff (patch)
tree1d322e8e8a458bf7a0af9b616d97d2c5bb958a49 /include/asm-arm
parentb48340aff031db98dbd34a4bbc575eec9bb78359 (diff)
downloadlinux-3.10-fd88dd740ad7b92cd399b6116dfa9486b36ffaff.tar.gz
linux-3.10-fd88dd740ad7b92cd399b6116dfa9486b36ffaff.tar.bz2
linux-3.10-fd88dd740ad7b92cd399b6116dfa9486b36ffaff.zip
[ARM] 3434/1: pxa i2s amsl define
Patch from Marc-Andre Hebert The error concerns a bit mask define for the AMSL bit of the SACR1 register in the 2.6 kernel tree. The AMSL is bit 0 and it was defined as so in the 2.4 kernel tree but it is inccorrectly set as bit 1 (a reserved bit) in the 2.6 kernel tree. Signed-off-by: Marc-Andre Hebert <marcandreh@humanware.ca> Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
Diffstat (limited to 'include/asm-arm')
-rw-r--r--include/asm-arm/arch-pxa/pxa-regs.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/asm-arm/arch-pxa/pxa-regs.h b/include/asm-arm/arch-pxa/pxa-regs.h
index 1409c5bd703..c8f53a71c07 100644
--- a/include/asm-arm/arch-pxa/pxa-regs.h
+++ b/include/asm-arm/arch-pxa/pxa-regs.h
@@ -485,7 +485,7 @@
#define SACR1_ENLBF (1 << 5) /* Enable Loopback */
#define SACR1_DRPL (1 << 4) /* Disable Replaying Function */
#define SACR1_DREC (1 << 3) /* Disable Recording Function */
-#define SACR1_AMSL (1 << 1) /* Specify Alternate Mode */
+#define SACR1_AMSL (1 << 0) /* Specify Alternate Mode */
#define SASR0_I2SOFF (1 << 7) /* Controller Status */
#define SASR0_ROR (1 << 6) /* Rx FIFO Overrun */