Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1371485 > unrolled thread

[PATCH 14/20] mfd: rt5033: Use devm_mfd_add_devices() for mfd_device registration

Started byLaxman Dewangan <ldewangan@nvidia.com>
First post2016-04-05 14:10 +0200
Last post2016-04-05 15:00 +0200
Articles 2 — 2 participants

Back to article view | Back to linux.kernel

This discussion starts older than the indexed window; earlier articles aren't shown. The article labeled Started by below is the oldest one visible, not the original post.


Contents

  [PATCH 14/20] mfd: rt5033: Use devm_mfd_add_devices() for mfd_device registration Laxman Dewangan <ldewangan@nvidia.com> - 2016-04-05 14:10 +0200
    Re: [PATCH 14/20] mfd: rt5033: Use devm_mfd_add_devices() for  mfd_device registration Javier Martinez Canillas <javier@osg.samsung.com> - 2016-04-05 15:00 +0200

#1371485 — [PATCH 14/20] mfd: rt5033: Use devm_mfd_add_devices() for mfd_device registration

FromLaxman Dewangan <ldewangan@nvidia.com>
Date2016-04-05 14:10 +0200
Subject[PATCH 14/20] mfd: rt5033: Use devm_mfd_add_devices() for mfd_device registration
Message-ID<rkxY1-36a-77@gated-at.bofh.it>
Use devm_mfd_add_devices() for mfd devices registration and get
rid of .remove callback to remove mfd devices. This is done
by managed device framework.

Signed-off-by: Laxman Dewangan <ldewangan@nvidia.com>
CC: Ingi Kim <ingi2.kim@samsung.com>
CC: Javier Martinez Canillas <javier@osg.samsung.com>
---
 drivers/mfd/rt5033.c | 10 +---------
 1 file changed, 1 insertion(+), 9 deletions(-)

diff --git a/drivers/mfd/rt5033.c b/drivers/mfd/rt5033.c
index 2b95485..9320684 100644
--- a/drivers/mfd/rt5033.c
+++ b/drivers/mfd/rt5033.c
@@ -97,7 +97,7 @@ static int rt5033_i2c_probe(struct i2c_client *i2c,
 		return ret;
 	}
 
-	ret = mfd_add_devices(rt5033->dev, -1, rt5033_devs,
+	ret = devm_mfd_add_devices(rt5033->dev, -1, rt5033_devs,
 			ARRAY_SIZE(rt5033_devs), NULL, 0,
 			regmap_irq_get_domain(rt5033->irq_data));
 	if (ret < 0) {
@@ -110,13 +110,6 @@ static int rt5033_i2c_probe(struct i2c_client *i2c,
 	return 0;
 }
 
-static int rt5033_i2c_remove(struct i2c_client *i2c)
-{
-	mfd_remove_devices(&i2c->dev);
-
-	return 0;
-}
-
 static const struct i2c_device_id rt5033_i2c_id[] = {
 	{ "rt5033", },
 	{ }
@@ -135,7 +128,6 @@ static struct i2c_driver rt5033_driver = {
 		.of_match_table = of_match_ptr(rt5033_dt_match),
 	},
 	.probe = rt5033_i2c_probe,
-	.remove = rt5033_i2c_remove,
 	.id_table = rt5033_i2c_id,
 };
 module_i2c_driver(rt5033_driver);
-- 
2.1.4

[toc] | [next] | [standalone]


#1371548 — Re: [PATCH 14/20] mfd: rt5033: Use devm_mfd_add_devices() for mfd_device registration

FromJavier Martinez Canillas <javier@osg.samsung.com>
Date2016-04-05 15:00 +0200
SubjectRe: [PATCH 14/20] mfd: rt5033: Use devm_mfd_add_devices() for mfd_device registration
Message-ID<rkyKo-3D8-53@gated-at.bofh.it>
In reply to#1371485
Hello Laxman,

On 04/05/2016 07:48 AM, Laxman Dewangan wrote:
> Use devm_mfd_add_devices() for mfd devices registration and get
> rid of .remove callback to remove mfd devices. This is done
> by managed device framework.
> 
> Signed-off-by: Laxman Dewangan <ldewangan@nvidia.com>
> CC: Ingi Kim <ingi2.kim@samsung.com>
> CC: Javier Martinez Canillas <javier@osg.samsung.com>
> ---

Reviewed-by: Javier Martinez Canillas <javier@osg.samsung.com>

Best regards,
-- 
Javier Martinez Canillas
Open Source Group
Samsung Research America

[toc] | [prev] | [standalone]


Back to top | Article view | linux.kernel


csiph-web