Skip to content

Commit

Permalink
mfd: Fix twl4030-power warnings
Browse files Browse the repository at this point in the history
KEY_1 and KEY_2 definitions conflicts with include/linux/input.h

Signed-off-by: Samuel Ortiz <sameo@linux.intel.com>
  • Loading branch information
Samuel Ortiz committed Sep 17, 2009
1 parent d619bc1 commit c826933
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions drivers/mfd/twl4030-power.c
Original file line number Diff line number Diff line change
Expand Up @@ -64,8 +64,8 @@ static u8 twl4030_start_script_address = 0x2b;
#define R_MEMORY_DATA PHY_TO_OFF_PM_MASTER(0x5a)

#define R_PROTECT_KEY 0x0E
#define KEY_1 0xC0
#define KEY_2 0x0C
#define R_KEY_1 0xC0
#define R_KEY_2 0x0C

/* resource configuration registers */

Expand Down Expand Up @@ -424,12 +424,12 @@ void __init twl4030_power_init(struct twl4030_power_data *twl4030_scripts)
struct twl4030_resconfig *resconfig;
u8 address = twl4030_start_script_address;

err = twl4030_i2c_write_u8(TWL4030_MODULE_PM_MASTER, KEY_1,
err = twl4030_i2c_write_u8(TWL4030_MODULE_PM_MASTER, R_KEY_1,
R_PROTECT_KEY);
if (err)
goto unlock;

err = twl4030_i2c_write_u8(TWL4030_MODULE_PM_MASTER, KEY_2,
err = twl4030_i2c_write_u8(TWL4030_MODULE_PM_MASTER, R_KEY_2,
R_PROTECT_KEY);
if (err)
goto unlock;
Expand Down

0 comments on commit c826933

Please sign in to comment.