Skip to content
Snippets Groups Projects
Commit 5e77a745 authored by Stephen Warren's avatar Stephen Warren Committed by Albert ARIBAUD
Browse files

ARM: bcm2835: fix mbox POWER_STATE_RESP_ON value


Typo: The correct value is 1 not 2.

Signed-off-by: default avatarStephen Warren <swarren@wwwdotorg.org>
parent 9c134e18
No related branches found
No related tags found
No related merge requests found
...@@ -143,7 +143,7 @@ struct bcm2835_mbox_tag_get_arm_mem { ...@@ -143,7 +143,7 @@ struct bcm2835_mbox_tag_get_arm_mem {
#define BCM2835_MBOX_POWER_DEVID_SPI 7 #define BCM2835_MBOX_POWER_DEVID_SPI 7
#define BCM2835_MBOX_POWER_DEVID_CCP2TX 8 #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 */ /* Device doesn't exist */
#define BCM2835_MBOX_POWER_STATE_RESP_NODEV (1 << 1) #define BCM2835_MBOX_POWER_STATE_RESP_NODEV (1 << 1)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment