iio: magnetometer: yamaha-yas530: Use i2c_get_match_data()
authorBiju Das <biju.das.jz@bp.renesas.com>
Sat, 12 Aug 2023 06:57:40 +0000 (07:57 +0100)
committerJonathan Cameron <Jonathan.Cameron@huawei.com>
Mon, 11 Sep 2023 19:12:41 +0000 (20:12 +0100)
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>
drivers/iio/magnetometer/yamaha-yas530.c

index c5e485bfc6fc03d9ba92e70ef1de014fca6ab4a4..7b041bb386931cd09e98c877b4a57c4f1037ca3e 100644 (file)
@@ -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);