On Sun, Oct 24, 2010 at 05:37:46PM +0900, Nobuhiro Iwamatsu wrote: > ctrl_* is deprecated. We should to use __raw_*. Given iobase is ioremap() returned, there should be an explicit reason for using __raw_xxx() instead of read/writel(). > Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@xxxxxxxxxxx> > --- > drivers/i2c/busses/i2c-sh7760.c | 4 ++-- > 1 files changed, 2 insertions(+), 2 deletions(-) > > diff --git a/drivers/i2c/busses/i2c-sh7760.c b/drivers/i2c/busses/i2c-sh7760.c > index 4f93da3..3cad8fe 100644 > --- a/drivers/i2c/busses/i2c-sh7760.c > +++ b/drivers/i2c/busses/i2c-sh7760.c > @@ -101,12 +101,12 @@ struct cami2c { > > static inline void OUT32(struct cami2c *cam, int reg, unsigned long val) > { > - ctrl_outl(val, (unsigned long)cam->iobase + reg); > + __raw_writel(val, (unsigned long)cam->iobase + reg); > } > > static inline unsigned long IN32(struct cami2c *cam, int reg) > { > - return ctrl_inl((unsigned long)cam->iobase + reg); > + return __raw_readl((unsigned long)cam->iobase + reg); > } > > static irqreturn_t sh7760_i2c_irq(int irq, void *ptr) > -- > 1.7.2.3 > > -- > To unsubscribe from this list: send the line "unsubscribe linux-i2c" in > the body of a message to majordomo@xxxxxxxxxxxxxxx > More majordomo info at http://vger.kernel.org/majordomo-info.html -- -- Ben Q: What's a light-year? A: One-third less calories than a regular year. -- To unsubscribe from this list: send the line "unsubscribe linux-i2c" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html