]> git.openfabrics.org - ~emulex/infiniband.git/commitdiff
i2c: i2c-bfin-twi: Always access 16 bit MMR by bfin 16 bit access Macro.
authorSonic Zhang <sonic.zhang@analog.com>
Tue, 5 Jun 2012 05:20:06 +0000 (13:20 +0800)
committerBob Liu <lliubbo@gmail.com>
Tue, 24 Jul 2012 05:39:50 +0000 (13:39 +0800)
Otherwise, the compiler may optimize assemble code into 8bit access instruction
when target register is 8 bit width.

Signed-off-by: Sonic Zhang <sonic.zhang@analog.com>
Signed-off-by: Bob Liu <lliubbo@gmail.com>
arch/blackfin/include/asm/bfin_twi.h

index 2f3339a47626e7e57074f142af8cc28faccdc1dc..e3b40e2856f2a51a5c462f8350a54ec5375ac2f8 100644 (file)
@@ -66,9 +66,9 @@ struct bfin_twi_iface {
 
 #define DEFINE_TWI_REG(reg_name, reg) \
 static inline u16 read_##reg_name(struct bfin_twi_iface *iface) \
-       { return iface->regs_base->reg; } \
+       { return bfin_read16(&iface->regs_base->reg); } \
 static inline void write_##reg_name(struct bfin_twi_iface *iface, u16 v) \
-       { iface->regs_base->reg = v; }
+       { bfin_write16(&iface->regs_base->reg, v); }
 
 DEFINE_TWI_REG(CLKDIV, clkdiv)
 DEFINE_TWI_REG(CONTROL, control)