diff options
| author | Nishanth Menon <nm@ti.com> | 2010-08-18 19:39:08 -0500 | 
|---|---|---|
| committer | Heiko Schocher <hs@denx.de> | 2010-08-23 08:08:49 +0200 | 
| commit | 46d8ece4e8fd2c4b92c99f7139332f49c368384e (patch) | |
| tree | 43d51481bf93f57bfa507c7814a740541b8b59f1 | |
| parent | 07cf5e207ecd7e82f08ec9f2d35d0df1dceaeadd (diff) | |
| download | olio-uboot-2014.01-46d8ece4e8fd2c4b92c99f7139332f49c368384e.tar.xz olio-uboot-2014.01-46d8ece4e8fd2c4b92c99f7139332f49c368384e.zip | |
omap2: i2c: add syss offset
OMAP2420 ES2.3 trm defines syss register offset as 0x10. Add it.
Cc: Steve Sakoman <steve@sakoman.com>
Cc: Heiko <hs@denx.de>
Cc: Sandeep Paulraj <s-paulraj@ti.com>
Cc: Wolfang Denk <wd@denx.de>
Signed-off-by: Nishanth Menon <nm@ti.com>
Acked-by: Steve Sakoman <steve@sakoman.com>
| -rw-r--r-- | arch/arm/include/asm/arch-omap24xx/i2c.h | 4 | 
1 files changed, 3 insertions, 1 deletions
| diff --git a/arch/arm/include/asm/arch-omap24xx/i2c.h b/arch/arm/include/asm/arch-omap24xx/i2c.h index 19046aaab..418a43268 100644 --- a/arch/arm/include/asm/arch-omap24xx/i2c.h +++ b/arch/arm/include/asm/arch-omap24xx/i2c.h @@ -36,7 +36,9 @@ struct i2c {  	unsigned short stat;	/* 0x08 */  	unsigned short res3;  	unsigned short iv;	/* 0x0C */ -	unsigned short res4[3]; +	unsigned short res4; +	unsigned short syss;	/* 0x10 */ +	unsigned short res4p1;  	unsigned short buf;	/* 0x14 */  	unsigned short res5;  	unsigned short cnt;	/* 0x18 */ |