]> www.infradead.org Git - users/jedix/linux-maple.git/commitdiff
iio: light: veml6070: use device managed iio_device_register
authorJavier Carrasco <javier.carrasco.cruz@gmail.com>
Sun, 29 Sep 2024 20:38:48 +0000 (22:38 +0200)
committerJonathan Cameron <Jonathan.Cameron@huawei.com>
Sat, 5 Oct 2024 11:09:15 +0000 (12:09 +0100)
Simplify the code by using devm_iio_device_register(), which removes the
need for a 'remove' function, as there are no more actions to take.

Signed-off-by: Javier Carrasco <javier.carrasco.cruz@gmail.com>
Link: https://patch.msgid.link/20240929-veml6070-cleanup-v1-3-a9350341a646@gmail.com
Signed-off-by: Jonathan Cameron <Jonathan.Cameron@huawei.com>
drivers/iio/light/veml6070.c

index 945ef58beead79598884631b05f082270d7f5bb2..d15caebdc95970cb8bfbc3241578c3307c08a614 100644 (file)
@@ -179,15 +179,7 @@ static int veml6070_probe(struct i2c_client *client)
        if (ret < 0)
                return ret;
 
-       return iio_device_register(indio_dev);
-}
-
-static void veml6070_remove(struct i2c_client *client)
-{
-       struct iio_dev *indio_dev = i2c_get_clientdata(client);
-       struct veml6070_data *data = iio_priv(indio_dev);
-
-       iio_device_unregister(indio_dev);
+       return devm_iio_device_register(&client->dev, indio_dev);
 }
 
 static const struct i2c_device_id veml6070_id[] = {
@@ -201,7 +193,6 @@ static struct i2c_driver veml6070_driver = {
                .name   = VEML6070_DRV_NAME,
        },
        .probe = veml6070_probe,
-       .remove  = veml6070_remove,
        .id_table = veml6070_id,
 };