]> www.infradead.org Git - users/jedix/linux-maple.git/commitdiff
iio: light: hid-sensor-als: Get platform data via dev_get_platdata()
authorAndy Shevchenko <andriy.shevchenko@linux.intel.com>
Mon, 2 Sep 2024 22:17:00 +0000 (01:17 +0300)
committerJonathan Cameron <Jonathan.Cameron@huawei.com>
Mon, 30 Sep 2024 08:21:01 +0000 (09:21 +0100)
Access to platform data via dev_get_platdata() getter to make code cleaner.

Signed-off-by: Andy Shevchenko <andy.shevchenko@gmail.com>
Link: https://patch.msgid.link/20240902222824.1145571-16-andy.shevchenko@gmail.com
Signed-off-by: Jonathan Cameron <Jonathan.Cameron@huawei.com>
drivers/iio/light/hid-sensor-als.c

index 0c1d97aecd71bd051a18bd1c6b85a78c20a16f5c..30332bf96d28a66fae75d094e4672fc14eaa8373 100644 (file)
@@ -356,11 +356,11 @@ static int als_parse_report(struct platform_device *pdev,
 /* Function to initialize the processing for usage id */
 static int hid_als_probe(struct platform_device *pdev)
 {
+       struct hid_sensor_hub_device *hsdev = dev_get_platdata(&pdev->dev);
        int ret = 0;
        static const char *name = "als";
        struct iio_dev *indio_dev;
        struct als_state *als_state;
-       struct hid_sensor_hub_device *hsdev = pdev->dev.platform_data;
 
        indio_dev = devm_iio_device_alloc(&pdev->dev, sizeof(struct als_state));
        if (!indio_dev)
@@ -438,7 +438,7 @@ error_remove_trigger:
 /* Function to deinitialize the processing for usage id */
 static void hid_als_remove(struct platform_device *pdev)
 {
-       struct hid_sensor_hub_device *hsdev = pdev->dev.platform_data;
+       struct hid_sensor_hub_device *hsdev = dev_get_platdata(&pdev->dev);
        struct iio_dev *indio_dev = platform_get_drvdata(pdev);
        struct als_state *als_state = iio_priv(indio_dev);