diff options
author | Beomho Seo <beomho.seo@samsung.com> | 2014-06-18 02:21:00 -0400 |
---|---|---|
committer | Jonathan Cameron <jic23@kernel.org> | 2014-06-21 07:40:37 -0400 |
commit | b97855354aaacd65d68805bce38af4af1ef703f9 (patch) | |
tree | 3c4b03595f9bab11ef003a84ae4277639b531a14 | |
parent | 1b791fadf3a1749505b6cf04d4ef58d278ee42cd (diff) |
iio: light: cm32181: Use devm_* APIs
This patch changes API from iio_device_register() to devm_* API.
Using API make code simpler.
Signed-off-by: Beomho Seo <beomho.seo@samsung.com>
Signed-off-by: Jonathan Cameron <jic23@kernel.org>
-rw-r--r-- | drivers/iio/light/cm32181.c | 11 |
1 files changed, 1 insertions, 10 deletions
diff --git a/drivers/iio/light/cm32181.c b/drivers/iio/light/cm32181.c index d976e6ce60db..ad36b294e4d5 100644 --- a/drivers/iio/light/cm32181.c +++ b/drivers/iio/light/cm32181.c | |||
@@ -331,7 +331,7 @@ static int cm32181_probe(struct i2c_client *client, | |||
331 | return ret; | 331 | return ret; |
332 | } | 332 | } |
333 | 333 | ||
334 | ret = iio_device_register(indio_dev); | 334 | ret = devm_iio_device_register(&client->dev, indio_dev); |
335 | if (ret) { | 335 | if (ret) { |
336 | dev_err(&client->dev, | 336 | dev_err(&client->dev, |
337 | "%s: regist device failed\n", | 337 | "%s: regist device failed\n", |
@@ -342,14 +342,6 @@ static int cm32181_probe(struct i2c_client *client, | |||
342 | return 0; | 342 | return 0; |
343 | } | 343 | } |
344 | 344 | ||
345 | static int cm32181_remove(struct i2c_client *client) | ||
346 | { | ||
347 | struct iio_dev *indio_dev = i2c_get_clientdata(client); | ||
348 | |||
349 | iio_device_unregister(indio_dev); | ||
350 | return 0; | ||
351 | } | ||
352 | |||
353 | static const struct i2c_device_id cm32181_id[] = { | 345 | static const struct i2c_device_id cm32181_id[] = { |
354 | { "cm32181", 0 }, | 346 | { "cm32181", 0 }, |
355 | { } | 347 | { } |
@@ -370,7 +362,6 @@ static struct i2c_driver cm32181_driver = { | |||
370 | }, | 362 | }, |
371 | .id_table = cm32181_id, | 363 | .id_table = cm32181_id, |
372 | .probe = cm32181_probe, | 364 | .probe = cm32181_probe, |
373 | .remove = cm32181_remove, | ||
374 | }; | 365 | }; |
375 | 366 | ||
376 | module_i2c_driver(cm32181_driver); | 367 | module_i2c_driver(cm32181_driver); |