From: Peter 'p2' De Schrijver Date: Wed, 16 Jul 2008 16:53:25 +0000 (+0300) Subject: PROTECT_KEY register is in the PM_MASTER module not in the PM_RECEIVER module X-Git-Tag: v2.6.26-omap1~70 X-Git-Url: http://pilppa.com/gitweb/?a=commitdiff_plain;h=c9c5b45299da20bfbbbbfb5fd9db5b968d003ccb;p=linux-2.6-omap-h63xx.git PROTECT_KEY register is in the PM_MASTER module not in the PM_RECEIVER module This patch fixes a write to the wrong address in the triton2 chip. Signed-off-by: Peter 'p2' De Schrijver Signed-off-by: Tony Lindgren --- diff --git a/drivers/i2c/chips/twl4030-usb.c b/drivers/i2c/chips/twl4030-usb.c index ab335cae665..20858b5bf78 100644 --- a/drivers/i2c/chips/twl4030-usb.c +++ b/drivers/i2c/chips/twl4030-usb.c @@ -586,7 +586,7 @@ static void twl4030_usb_ldo_init(struct twl4030_usb *twl) twl4030_i2c_write_u8(TWL4030_MODULE_PM_RECEIVER, 0, VUSB1V8_TYPE); /* disable access to power configuration registers */ - twl4030_i2c_write_u8(TWL4030_MODULE_PM_RECEIVER, 0, PROTECT_KEY); + twl4030_i2c_write_u8(TWL4030_MODULE_PM_MASTER, 0, PROTECT_KEY); } static irqreturn_t twl4030_usb_irq(int irq, void *_twl)