Commit ee478936 authored by Russell King's avatar Russell King Committed by Wolfram Sang

i2c: pxa: always set fm and hs members for each type

Always set the fm and hs members of struct pxa_reg_layout. These
members are already taking space, we don't need code as well.
Signed-off-by: default avatarRussell King <rmk+kernel@armlinux.org.uk>
Signed-off-by: default avatarWolfram Sang <wsa@kernel.org>
parent f8e5d3cb
...@@ -113,6 +113,8 @@ static struct pxa_reg_layout pxa_reg_layout[] = { ...@@ -113,6 +113,8 @@ static struct pxa_reg_layout pxa_reg_layout[] = {
.icr = 0x10, .icr = 0x10,
.isr = 0x18, .isr = 0x18,
.isar = 0x20, .isar = 0x20,
.fm = ICR_FM,
.hs = ICR_HS,
}, },
[REGS_PXA3XX] = { [REGS_PXA3XX] = {
.ibmr = 0x00, .ibmr = 0x00,
...@@ -120,6 +122,8 @@ static struct pxa_reg_layout pxa_reg_layout[] = { ...@@ -120,6 +122,8 @@ static struct pxa_reg_layout pxa_reg_layout[] = {
.icr = 0x08, .icr = 0x08,
.isr = 0x0c, .isr = 0x0c,
.isar = 0x10, .isar = 0x10,
.fm = ICR_FM,
.hs = ICR_HS,
}, },
[REGS_CE4100] = { [REGS_CE4100] = {
.ibmr = 0x14, .ibmr = 0x14,
...@@ -127,6 +131,8 @@ static struct pxa_reg_layout pxa_reg_layout[] = { ...@@ -127,6 +131,8 @@ static struct pxa_reg_layout pxa_reg_layout[] = {
.icr = 0x00, .icr = 0x00,
.isr = 0x04, .isr = 0x04,
/* no isar register */ /* no isar register */
.fm = ICR_FM,
.hs = ICR_HS,
}, },
[REGS_PXA910] = { [REGS_PXA910] = {
.ibmr = 0x00, .ibmr = 0x00,
...@@ -136,6 +142,8 @@ static struct pxa_reg_layout pxa_reg_layout[] = { ...@@ -136,6 +142,8 @@ static struct pxa_reg_layout pxa_reg_layout[] = {
.isar = 0x20, .isar = 0x20,
.ilcr = 0x28, .ilcr = 0x28,
.iwcr = 0x30, .iwcr = 0x30,
.fm = ICR_FM,
.hs = ICR_HS,
}, },
[REGS_A3700] = { [REGS_A3700] = {
.ibmr = 0x00, .ibmr = 0x00,
...@@ -1279,8 +1287,8 @@ static int i2c_pxa_probe(struct platform_device *dev) ...@@ -1279,8 +1287,8 @@ static int i2c_pxa_probe(struct platform_device *dev)
i2c->reg_idbr = i2c->reg_base + pxa_reg_layout[i2c_type].idbr; i2c->reg_idbr = i2c->reg_base + pxa_reg_layout[i2c_type].idbr;
i2c->reg_icr = i2c->reg_base + pxa_reg_layout[i2c_type].icr; i2c->reg_icr = i2c->reg_base + pxa_reg_layout[i2c_type].icr;
i2c->reg_isr = i2c->reg_base + pxa_reg_layout[i2c_type].isr; i2c->reg_isr = i2c->reg_base + pxa_reg_layout[i2c_type].isr;
i2c->fm_mask = pxa_reg_layout[i2c_type].fm ? : ICR_FM; i2c->fm_mask = pxa_reg_layout[i2c_type].fm;
i2c->hs_mask = pxa_reg_layout[i2c_type].hs ? : ICR_HS; i2c->hs_mask = pxa_reg_layout[i2c_type].hs;
if (i2c_type != REGS_CE4100) if (i2c_type != REGS_CE4100)
i2c->reg_isar = i2c->reg_base + pxa_reg_layout[i2c_type].isar; i2c->reg_isar = i2c->reg_base + pxa_reg_layout[i2c_type].isar;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment