Commit 5a4ef20a authored by Biju Das's avatar Biju Das Committed by Jonathan Cameron
Browse files

iio: light: opt4001: Use i2c_get_match_data()



Replace device_get_match_data()->i2c_get_match_data() to extend matching
support for ID table.

Signed-off-by: default avatarBiju Das <biju.das.jz@bp.renesas.com>
Reviewed-by: default avatarStefan Windfeldt-Prytz <stefan.windfeldt-prytz@axis.com>
Tested-by: default avatarStefan Windfeldt-Prytz <stefan.windfeldt-prytz@axis.com>
Link: https://lore.kernel.org/r/20230812151908.188696-1-biju.das.jz@bp.renesas.com


Signed-off-by: default avatarJonathan Cameron <Jonathan.Cameron@huawei.com>
parent c4153b57
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -412,7 +412,7 @@ static int opt4001_probe(struct i2c_client *client)
	if (dev_id != OPT4001_DEVICE_ID_VAL)
		dev_warn(&client->dev, "Device ID: %#04x unknown\n", dev_id);

	chip->chip_info = device_get_match_data(&client->dev);
	chip->chip_info = i2c_get_match_data(client);

	indio_dev->channels = opt4001_channels;
	indio_dev->num_channels = ARRAY_SIZE(opt4001_channels);