linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 1/2] mfd: tps65218: Correct the config description
@ 2017-09-13 12:17 Keerthy
  2017-09-13 12:17 ` [PATCH 2/2] mfd: tps65218: Introduce dependency on CONFIG_OF Keerthy
  2017-09-14  9:28 ` [PATCH 1/2] mfd: tps65218: Correct the config description Lee Jones
  0 siblings, 2 replies; 4+ messages in thread
From: Keerthy @ 2017-09-13 12:17 UTC (permalink / raw)
  To: lee.jones; +Cc: tony, linux-kernel, linux-omap, j-keerthy

When the initial support was added for this PMIC was added
only regulator support was present. Now we have GPIO and Powerbutton
support as well. Hence correct the description of MFD_TPS65218 config
option.

Signed-off-by: Keerthy <j-keerthy@ti.com>
---
 drivers/mfd/Kconfig | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/drivers/mfd/Kconfig b/drivers/mfd/Kconfig
index b478768..44c529e 100644
--- a/drivers/mfd/Kconfig
+++ b/drivers/mfd/Kconfig
@@ -1408,8 +1408,7 @@ config MFD_TPS65218
 	  If you say yes here you get support for the TPS65218 series of
 	  Power Management chips.
 	  These include voltage regulators, gpio and other features
-	  that are often used in portable devices. Only regulator
-	  component is currently supported.
+	  that are often used in portable devices.
 
 	  This driver can also be built as a module.  If so, the module
 	  will be called tps65218.
-- 
1.9.1

^ permalink raw reply related	[flat|nested] 4+ messages in thread

* [PATCH 2/2] mfd: tps65218: Introduce dependency on CONFIG_OF
  2017-09-13 12:17 [PATCH 1/2] mfd: tps65218: Correct the config description Keerthy
@ 2017-09-13 12:17 ` Keerthy
  2017-09-14  9:28   ` Lee Jones
  2017-09-14  9:28 ` [PATCH 1/2] mfd: tps65218: Correct the config description Lee Jones
  1 sibling, 1 reply; 4+ messages in thread
From: Keerthy @ 2017-09-13 12:17 UTC (permalink / raw)
  To: lee.jones; +Cc: tony, linux-kernel, linux-omap, j-keerthy

Currently the driver boots only via device tree hence add a
dependency on CONFIG_OF. This leaves with a bunch of unused code
so clean that up.

Signed-off-by: Keerthy <j-keerthy@ti.com>
---
 drivers/mfd/Kconfig    | 2 +-
 drivers/mfd/tps65218.c | 8 --------
 2 files changed, 1 insertion(+), 9 deletions(-)

diff --git a/drivers/mfd/Kconfig b/drivers/mfd/Kconfig
index 44c529e..682336d 100644
--- a/drivers/mfd/Kconfig
+++ b/drivers/mfd/Kconfig
@@ -1400,7 +1400,7 @@ config MFD_TI_LP87565
 
 config MFD_TPS65218
 	tristate "TI TPS65218 Power Management chips"
-	depends on I2C
+	depends on I2C && OF
 	select MFD_CORE
 	select REGMAP_I2C
 	select REGMAP_IRQ
diff --git a/drivers/mfd/tps65218.c b/drivers/mfd/tps65218.c
index 13834a0..910f569 100644
--- a/drivers/mfd/tps65218.c
+++ b/drivers/mfd/tps65218.c
@@ -215,17 +215,9 @@ static int tps65218_probe(struct i2c_client *client,
 				const struct i2c_device_id *ids)
 {
 	struct tps65218 *tps;
-	const struct of_device_id *match;
 	int ret;
 	unsigned int chipid;
 
-	match = of_match_device(of_tps65218_match_table, &client->dev);
-	if (!match) {
-		dev_err(&client->dev,
-			"Failed to find matching dt id\n");
-		return -EINVAL;
-	}
-
 	tps = devm_kzalloc(&client->dev, sizeof(*tps), GFP_KERNEL);
 	if (!tps)
 		return -ENOMEM;
-- 
1.9.1

^ permalink raw reply related	[flat|nested] 4+ messages in thread

* Re: [PATCH 1/2] mfd: tps65218: Correct the config description
  2017-09-13 12:17 [PATCH 1/2] mfd: tps65218: Correct the config description Keerthy
  2017-09-13 12:17 ` [PATCH 2/2] mfd: tps65218: Introduce dependency on CONFIG_OF Keerthy
@ 2017-09-14  9:28 ` Lee Jones
  1 sibling, 0 replies; 4+ messages in thread
From: Lee Jones @ 2017-09-14  9:28 UTC (permalink / raw)
  To: Keerthy; +Cc: tony, linux-kernel, linux-omap

On Wed, 13 Sep 2017, Keerthy wrote:

> When the initial support was added for this PMIC was added
> only regulator support was present. Now we have GPIO and Powerbutton
> support as well. Hence correct the description of MFD_TPS65218 config
> option.
> 
> Signed-off-by: Keerthy <j-keerthy@ti.com>
> ---
>  drivers/mfd/Kconfig | 3 +--
>  1 file changed, 1 insertion(+), 2 deletions(-)

Applied, thanks.

-- 
Lee Jones
Linaro STMicroelectronics Landing Team Lead
Linaro.org │ Open source software for ARM SoCs
Follow Linaro: Facebook | Twitter | Blog

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH 2/2] mfd: tps65218: Introduce dependency on CONFIG_OF
  2017-09-13 12:17 ` [PATCH 2/2] mfd: tps65218: Introduce dependency on CONFIG_OF Keerthy
@ 2017-09-14  9:28   ` Lee Jones
  0 siblings, 0 replies; 4+ messages in thread
From: Lee Jones @ 2017-09-14  9:28 UTC (permalink / raw)
  To: Keerthy; +Cc: tony, linux-kernel, linux-omap

On Wed, 13 Sep 2017, Keerthy wrote:

> Currently the driver boots only via device tree hence add a
> dependency on CONFIG_OF. This leaves with a bunch of unused code
> so clean that up.
> 
> Signed-off-by: Keerthy <j-keerthy@ti.com>
> ---
>  drivers/mfd/Kconfig    | 2 +-
>  drivers/mfd/tps65218.c | 8 --------
>  2 files changed, 1 insertion(+), 9 deletions(-)

Applied, thanks.

-- 
Lee Jones
Linaro STMicroelectronics Landing Team Lead
Linaro.org │ Open source software for ARM SoCs
Follow Linaro: Facebook | Twitter | Blog

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2017-09-14  9:28 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-09-13 12:17 [PATCH 1/2] mfd: tps65218: Correct the config description Keerthy
2017-09-13 12:17 ` [PATCH 2/2] mfd: tps65218: Introduce dependency on CONFIG_OF Keerthy
2017-09-14  9:28   ` Lee Jones
2017-09-14  9:28 ` [PATCH 1/2] mfd: tps65218: Correct the config description Lee Jones

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).