mirror of
https://github.com/torvalds/linux.git
synced 2024-11-10 22:21:40 +00:00
iio: accel: kxsd9: 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: Uwe Kleine-König <u.kleine-koenig@pengutronix.de> Link: https://lore.kernel.org/r/20221023132302.911644-12-u.kleine-koenig@pengutronix.de Signed-off-by: Jonathan Cameron <Jonathan.Cameron@huawei.com>
This commit is contained in:
parent
5019025fc3
commit
2ba423fefb
@ -10,8 +10,7 @@
|
||||
|
||||
#include "kxsd9.h"
|
||||
|
||||
static int kxsd9_i2c_probe(struct i2c_client *i2c,
|
||||
const struct i2c_device_id *id)
|
||||
static int kxsd9_i2c_probe(struct i2c_client *i2c)
|
||||
{
|
||||
static const struct regmap_config config = {
|
||||
.reg_bits = 8,
|
||||
@ -55,7 +54,7 @@ static struct i2c_driver kxsd9_i2c_driver = {
|
||||
.of_match_table = kxsd9_of_match,
|
||||
.pm = pm_ptr(&kxsd9_dev_pm_ops),
|
||||
},
|
||||
.probe = kxsd9_i2c_probe,
|
||||
.probe_new = kxsd9_i2c_probe,
|
||||
.remove = kxsd9_i2c_remove,
|
||||
.id_table = kxsd9_i2c_id,
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user