mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-01-01 02:33:57 +00:00
iio: magnetometer: yamaha-yas530: Use i2c_get_match_data()
Simplify the probe() by replacing device_get_match_data() with i2c_get_match_data(). Signed-off-by: Biju Das <biju.das.jz@bp.renesas.com> Reviewed-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com> Link: https://lore.kernel.org/r/20230812065741.20990-2-biju.das.jz@bp.renesas.com Signed-off-by: Jonathan Cameron <Jonathan.Cameron@huawei.com>
This commit is contained in:
parent
541d803abf
commit
72d365398d
@ -1434,9 +1434,7 @@ static int yas5xx_probe(struct i2c_client *i2c)
|
||||
goto assert_reset;
|
||||
}
|
||||
|
||||
ci = device_get_match_data(dev);
|
||||
if (!ci)
|
||||
ci = (const struct yas5xx_chip_info *)id->driver_data;
|
||||
ci = i2c_get_match_data(i2c);
|
||||
yas5xx->chip_info = ci;
|
||||
|
||||
ret = regmap_read(yas5xx->map, YAS5XX_DEVICE_ID, &id_check);
|
||||
|
Loading…
Reference in New Issue
Block a user