Commit d7c94228 authored by Uwe Kleine-König's avatar Uwe Kleine-König Committed by Jonathan Cameron

iio: temperature: tsys01: Convert to i2c's .probe_new()

The probe function doesn't make use of the i2c_device_id * parameter so it
can be trivially converted.
Signed-off-by: default avatarUwe Kleine-König <u.kleine-koenig@pengutronix.de>
Reviewed-by: default avatarAndy Shevchenko <andriy.shevchenko@linux.intel.com>
Link: https://lore.kernel.org/r/20221118224540.619276-190-uwe@kleine-koenig.orgSigned-off-by: default avatarJonathan Cameron <Jonathan.Cameron@huawei.com>
parent f1e7d53d
...@@ -176,8 +176,7 @@ static int tsys01_probe(struct iio_dev *indio_dev, struct device *dev) ...@@ -176,8 +176,7 @@ static int tsys01_probe(struct iio_dev *indio_dev, struct device *dev)
return devm_iio_device_register(dev, indio_dev); return devm_iio_device_register(dev, indio_dev);
} }
static int tsys01_i2c_probe(struct i2c_client *client, static int tsys01_i2c_probe(struct i2c_client *client)
const struct i2c_device_id *id)
{ {
struct tsys01_dev *dev_data; struct tsys01_dev *dev_data;
struct iio_dev *indio_dev; struct iio_dev *indio_dev;
...@@ -219,7 +218,7 @@ static const struct of_device_id tsys01_of_match[] = { ...@@ -219,7 +218,7 @@ static const struct of_device_id tsys01_of_match[] = {
MODULE_DEVICE_TABLE(of, tsys01_of_match); MODULE_DEVICE_TABLE(of, tsys01_of_match);
static struct i2c_driver tsys01_driver = { static struct i2c_driver tsys01_driver = {
.probe = tsys01_i2c_probe, .probe_new = tsys01_i2c_probe,
.id_table = tsys01_id, .id_table = tsys01_id,
.driver = { .driver = {
.name = "tsys01", .name = "tsys01",
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment