Commit 70a3894c authored by Biju Das's avatar Biju Das Committed by Linus Walleij
Browse files

pinctrl: sx150x: Simplify probe()



Simpilfy probe() by replacing of_device_get_match_data() and ID lookup for
retrieving match data by i2c_get_match_data().

Signed-off-by: default avatarBiju Das <biju.das.jz@bp.renesas.com>
Link: https://lore.kernel.org/r/20230909110459.12453-1-biju.das.jz@bp.renesas.com


Signed-off-by: default avatarLinus Walleij <linus.walleij@linaro.org>
parent 71567fbd
Loading
Loading
Loading
Loading
+1 −6
Original line number Diff line number Diff line
@@ -1116,7 +1116,6 @@ static const struct regmap_config sx150x_regmap_config = {

static int sx150x_probe(struct i2c_client *client)
{
	const struct i2c_device_id *id = i2c_client_get_device_id(client);
	static const u32 i2c_funcs = I2C_FUNC_SMBUS_BYTE_DATA |
				     I2C_FUNC_SMBUS_WRITE_WORD_DATA;
	struct device *dev = &client->dev;
@@ -1135,11 +1134,7 @@ static int sx150x_probe(struct i2c_client *client)
	pctl->dev = dev;
	pctl->client = client;

	if (dev->of_node)
		pctl->data = of_device_get_match_data(dev);
	else
		pctl->data = (struct sx150x_device_data *)id->driver_data;

	pctl->data = i2c_get_match_data(client);
	if (!pctl->data)
		return -EINVAL;