Commit 252f211b authored by Biju Das's avatar Biju Das Committed by Wolfram Sang
Browse files

i2c: rzv2m: Replace lowercase macros with static inline functions



Convert macros bit_setl and bit_clrl with static inline functions
as normally we'd put macro names in all uppercase.

Reported-by: default avatarPavel Machek <pavel@denx.de>
Signed-off-by: default avatarBiju Das <biju.das.jz@bp.renesas.com>
Signed-off-by: default avatarWolfram Sang <wsa@kernel.org>
parent 3c4b88de
Loading
Loading
Loading
Loading
+10 −3
Original line number Diff line number Diff line
@@ -50,9 +50,6 @@
#define IICB0MDSC	BIT(7)		/* Bus Mode */
#define IICB0SLSE	BIT(1)		/* Start condition output */

#define bit_setl(addr, val)		writel(readl(addr) | (val), (addr))
#define bit_clrl(addr, val)		writel(readl(addr) & ~(val), (addr))

struct rzv2m_i2c_priv {
	void __iomem *base;
	struct i2c_adapter adap;
@@ -78,6 +75,16 @@ static const struct bitrate_config bitrate_configs[] = {
	[RZV2M_I2C_400K] = { 52, 900 },
};

static inline void bit_setl(void __iomem *addr, u32 val)
{
	writel(readl(addr) | val, addr);
}

static inline void bit_clrl(void __iomem *addr, u32 val)
{
	writel(readl(addr) & ~val, addr);
}

static irqreturn_t rzv2m_i2c_tia_irq_handler(int this_irq, void *dev_id)
{
	struct rzv2m_i2c_priv *priv = dev_id;