diff options
author | Stephen Warren <swarren@wwwdotorg.org> | 2014-02-05 20:42:25 -0700 |
---|---|---|
committer | Albert ARIBAUD <albert.u.boot@aribaud.net> | 2014-02-14 07:57:14 +0100 |
commit | 5e77a745b24d9b98aa635293972f04fd6f0c6b38 (patch) | |
tree | cca27f2a30c128a4c45f7dca8bd6cd39f8fead88 /arch/arm/include | |
parent | 9c134e189a95c976dab94d4f28444a5398627188 (diff) | |
download | u-boot-imx-5e77a745b24d9b98aa635293972f04fd6f0c6b38.zip u-boot-imx-5e77a745b24d9b98aa635293972f04fd6f0c6b38.tar.gz u-boot-imx-5e77a745b24d9b98aa635293972f04fd6f0c6b38.tar.bz2 |
ARM: bcm2835: fix mbox POWER_STATE_RESP_ON value
Typo: The correct value is 1 not 2.
Signed-off-by: Stephen Warren <swarren@wwwdotorg.org>
Diffstat (limited to 'arch/arm/include')
-rw-r--r-- | arch/arm/include/asm/arch-bcm2835/mbox.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/include/asm/arch-bcm2835/mbox.h b/arch/arm/include/asm/arch-bcm2835/mbox.h index 38cb42a..dded857 100644 --- a/arch/arm/include/asm/arch-bcm2835/mbox.h +++ b/arch/arm/include/asm/arch-bcm2835/mbox.h @@ -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) |