From: Andrzej Zaborowski Date: Sat, 29 Mar 2008 17:52:16 +0000 (+0100) Subject: musb_hdrc: Fix TUSB6010 ID register offsets. X-Git-Tag: v2.6.25-omap1~70 X-Git-Url: http://pilppa.com/gitweb/?a=commitdiff_plain;h=8a88c221c88399bc694c367dbea01ffc4153ef20;p=linux-2.6-omap-h63xx.git musb_hdrc: Fix TUSB6010 ID register offsets. [Sorry, the previous patch was a copy/paste mistake, this one should be better] I have no access to the docs for this chip but I'm pretty sure the current address of the two DIDR1 registers is wrong because it's outside the TUSB-specific register space. The modified address in turn has a good chance to be correct. Signed-off-by: Andrzej Zaborowski Acked-by: Felipe Balbi Signed-off-by: Tony Lindgren --- diff --git a/drivers/usb/musb/tusb6010.h b/drivers/usb/musb/tusb6010.h index 7ef6abf143e..db6dad0750a 100644 --- a/drivers/usb/musb/tusb6010.h +++ b/drivers/usb/musb/tusb6010.h @@ -218,8 +218,8 @@ extern u8 tusb_get_revision(struct musb *musb); #define TUSB_PROD_TEST_RESET_VAL 0xa596 #define TUSB_EP_FIFO(ep) (TUSB_FIFO_BASE + (ep) * 0x20) -#define TUSB_DIDR1_LO 0x1f8 -#define TUSB_DIDR1_HI 0x1fc +#define TUSB_DIDR1_LO (TUSB_SYS_REG_BASE + 0x1f8) +#define TUSB_DIDR1_HI (TUSB_SYS_REG_BASE + 0x1fc) #define TUSB_DIDR1_HI_CHIP_REV(v) (((v) >> 17) & 0xf) #define TUSB_DIDR1_HI_REV_20 0 #define TUSB_DIDR1_HI_REV_30 1