Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 8df39901 authored by Nobuhiro Iwamatsu's avatar Nobuhiro Iwamatsu Committed by Paul Mundt
Browse files

sh: i2c-sh7760: Replase from ctrl_* to __raw_*



ctrl_* is deprecated. We should to use __raw_*.

Signed-off-by: default avatarNobuhiro Iwamatsu <iwamatsu@nigauri.org>
Signed-off-by: default avatarPaul Mundt <lethal@linux-sh.org>
parent de9186c2
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -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)