diff options
author | Il Han <corone.il.han@gmail.com> | 2012-08-17 03:49:43 -0400 |
---|---|---|
committer | Anton Vorontsov <anton.vorontsov@linaro.org> | 2012-08-22 22:38:28 -0400 |
commit | 94b05cabc07d7ebb4f9d2f2dce6ab7db20f7fbac (patch) | |
tree | c4db3da935c48a4e179034c6f1138cd618f828f4 /drivers/power/twl4030_charger.c | |
parent | 4ac64d51265957f78770c112727e5cfbe615d279 (diff) |
twl4030_charger: It would be better not to use the 0b-prefix
It would be better not to use the 0b-prefix for earlier versions of
gcc-4.3.
Signed-off-by: Il Han <corone.il.han@gmail.com>
Acked-by: NeilBrown <neilb@suse.de>
Signed-off-by: Anton Vorontsov <anton.vorontsov@linaro.org>
Diffstat (limited to 'drivers/power/twl4030_charger.c')
-rw-r--r-- | drivers/power/twl4030_charger.c | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/drivers/power/twl4030_charger.c b/drivers/power/twl4030_charger.c index 15f4d5d8611b..8d6bc6859a92 100644 --- a/drivers/power/twl4030_charger.c +++ b/drivers/power/twl4030_charger.c | |||
@@ -41,16 +41,16 @@ | |||
41 | #define TWL4030_STS_VBUS BIT(7) | 41 | #define TWL4030_STS_VBUS BIT(7) |
42 | #define TWL4030_STS_USB_ID BIT(2) | 42 | #define TWL4030_STS_USB_ID BIT(2) |
43 | #define TWL4030_BBCHEN BIT(4) | 43 | #define TWL4030_BBCHEN BIT(4) |
44 | #define TWL4030_BBSEL_MASK 0b1100 | 44 | #define TWL4030_BBSEL_MASK 0x0c |
45 | #define TWL4030_BBSEL_2V5 0b0000 | 45 | #define TWL4030_BBSEL_2V5 0x00 |
46 | #define TWL4030_BBSEL_3V0 0b0100 | 46 | #define TWL4030_BBSEL_3V0 0x04 |
47 | #define TWL4030_BBSEL_3V1 0b1000 | 47 | #define TWL4030_BBSEL_3V1 0x08 |
48 | #define TWL4030_BBSEL_3V2 0b1100 | 48 | #define TWL4030_BBSEL_3V2 0x0c |
49 | #define TWL4030_BBISEL_MASK 0b11 | 49 | #define TWL4030_BBISEL_MASK 0x03 |
50 | #define TWL4030_BBISEL_25uA 0b00 | 50 | #define TWL4030_BBISEL_25uA 0x00 |
51 | #define TWL4030_BBISEL_150uA 0b01 | 51 | #define TWL4030_BBISEL_150uA 0x01 |
52 | #define TWL4030_BBISEL_500uA 0b10 | 52 | #define TWL4030_BBISEL_500uA 0x02 |
53 | #define TWL4030_BBISEL_1000uA 0b11 | 53 | #define TWL4030_BBISEL_1000uA 0x03 |
54 | 54 | ||
55 | /* BCI interrupts */ | 55 | /* BCI interrupts */ |
56 | #define TWL4030_WOVF BIT(0) /* Watchdog overflow */ | 56 | #define TWL4030_WOVF BIT(0) /* Watchdog overflow */ |