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

Commit bd01f064 authored by Dong Aisheng's avatar Dong Aisheng Committed by Shawn Guo
Browse files

soc: imx: gpc: remove unnecessary readable_reg callback



It is not really necessary to provide the current .readable_reg
implementation as we know what we're doing in our driver
and the regmap core has already done the partial check for
available maximum regs.

Acked-by: default avatarLucas Stach <l.stach@pengutronix.de>
Signed-off-by: default avatarDong Aisheng <aisheng.dong@nxp.com>
Signed-off-by: default avatarShawn Guo <shawnguo@kernel.org>
parent ff693a3f
Loading
Loading
Loading
Loading
+0 −8
Original line number Diff line number Diff line
@@ -284,18 +284,10 @@ static const struct of_device_id imx_gpc_dt_ids[] = {
	{ }
};

static bool imx_gpc_readable_reg(struct device *dev, unsigned int reg)
{
	return (reg % 4 == 0) && (reg <= 0x2ac);
}

static const struct regmap_config imx_gpc_regmap_config = {
	.reg_bits = 32,
	.val_bits = 32,
	.reg_stride = 4,

	.readable_reg = imx_gpc_readable_reg,

	.max_register = 0x2ac,
};