iio: magnetometer: tmag5273: Switch to device_property_match_property_string()
authorAndy Shevchenko <andriy.shevchenko@linux.intel.com>
Tue, 8 Aug 2023 16:27:59 +0000 (19:27 +0300)
committerJonathan Cameron <Jonathan.Cameron@huawei.com>
Thu, 16 Nov 2023 19:10:26 +0000 (19:10 +0000)
Replace open coded device_property_match_property_string().

Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
Link: https://lore.kernel.org/r/20230808162800.61651-6-andriy.shevchenko@linux.intel.com
Signed-off-by: Jonathan Cameron <Jonathan.Cameron@huawei.com>
drivers/iio/magnetometer/tmag5273.c

index c5e5c4ad681e644760acd4ddb67bbe7105a9f293..bcd989d650591d9176c64089db08ca569fdf2723 100644 (file)
@@ -497,17 +497,13 @@ static int tmag5273_set_operating_mode(struct tmag5273_data *data,
 static void tmag5273_read_device_property(struct tmag5273_data *data)
 {
        struct device *dev = data->dev;
-       const char *str;
        int ret;
 
        data->angle_measurement = TMAG5273_ANGLE_EN_X_Y;
 
-       ret = device_property_read_string(dev, "ti,angle-measurement", &str);
-       if (ret)
-               return;
-
-       ret = match_string(tmag5273_angle_names,
-                          ARRAY_SIZE(tmag5273_angle_names), str);
+       ret = device_property_match_property_string(dev, "ti,angle-measurement",
+                                                   tmag5273_angle_names,
+                                                   ARRAY_SIZE(tmag5273_angle_names));
        if (ret >= 0)
                data->angle_measurement = ret;
 }