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

Commit 1455dddc authored by Luca Ceresoli's avatar Luca Ceresoli Committed by Mauro Carvalho Chehab
Browse files

media: imx274: remote unused function imx274_read_reg



imx274_read_reg() is not used since commit ca017467 ("media:
imx274: add helper to read multibyte registers").

Signed-off-by: default avatarLuca Ceresoli <luca@lucaceresoli.net>
Signed-off-by: default avatarSakari Ailus <sakari.ailus@linux.intel.com>
Signed-off-by: default avatarMauro Carvalho Chehab <mchehab+samsung@kernel.org>
parent 337e90ed
Loading
Loading
Loading
Loading
+0 −18
Original line number Diff line number Diff line
@@ -617,24 +617,6 @@ static int imx274_write_table(struct stimx274 *priv, const struct reg_8 table[])
	return 0;
}

static inline int imx274_read_reg(struct stimx274 *priv, u16 addr, u8 *val)
{
	unsigned int uint_val;
	int err;

	err = regmap_read(priv->regmap, addr, &uint_val);
	if (err)
		dev_err(&priv->client->dev,
			"%s : i2c read failed, addr = %x\n", __func__, addr);
	else
		dev_dbg(&priv->client->dev,
			"%s : addr 0x%x, val=0x%x\n", __func__,
			addr, uint_val);

	*val = uint_val;
	return err;
}

static inline int imx274_write_reg(struct stimx274 *priv, u16 addr, u8 val)
{
	int err;