]> git.kernelconcepts.de Git - karo-tx-uboot.git/commitdiff
ARM: bcm2835: fix mbox POWER_STATE_RESP_ON value
authorStephen Warren <swarren@wwwdotorg.org>
Thu, 6 Feb 2014 03:42:25 +0000 (20:42 -0700)
committerAlbert ARIBAUD <albert.u.boot@aribaud.net>
Fri, 14 Feb 2014 06:57:14 +0000 (07:57 +0100)
Typo: The correct value is 1 not 2.

Signed-off-by: Stephen Warren <swarren@wwwdotorg.org>
arch/arm/include/asm/arch-bcm2835/mbox.h

index 38cb42a3b32df186f0f50b84320221cc5e5893e6..dded857c3ad50abbe650f12a1ebb435e6f8d7614 100644 (file)
@@ -143,7 +143,7 @@ struct bcm2835_mbox_tag_get_arm_mem {
 #define BCM2835_MBOX_POWER_DEVID_SPI           7
 #define BCM2835_MBOX_POWER_DEVID_CCP2TX                8
 
-#define BCM2835_MBOX_POWER_STATE_RESP_ON       (1 << 1)
+#define BCM2835_MBOX_POWER_STATE_RESP_ON       (1 << 0)
 /* Device doesn't exist */
 #define BCM2835_MBOX_POWER_STATE_RESP_NODEV    (1 << 1)