diff mbox series

[RFC,v3,7/7] regulator: bd9576: Fix the driver name in id table

Message ID 9fd467d447cd2e002fa218a065cd0674614b435f.1615454845.git.matti.vaittinen@fi.rohmeurope.com (mailing list archive)
State Superseded
Delegated to: Geert Uytterhoeven
Headers show
Series Extend regulator notification support | expand

Commit Message

Vaittinen, Matti March 11, 2021, 10:24 a.m. UTC
Driver name was changed in MFD cell:
https://lore.kernel.org/lkml/560b9748094392493ebf7af11b6cc558776c4fd5.1613031055.git.matti.vaittinen@fi.rohmeurope.com/
Fix the ID table to match this.

Signed-off-by: Matti Vaittinen <matti.vaittinen@fi.rohmeurope.com>
---
v3:
 - no changes
v2:
 - new patch

 drivers/regulator/bd9576-regulator.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Comments

Mark Brown April 2, 2021, 5:19 p.m. UTC | #1
On Thu, Mar 11, 2021 at 12:24:29PM +0200, Matti Vaittinen wrote:
> Driver name was changed in MFD cell:
> https://lore.kernel.org/lkml/560b9748094392493ebf7af11b6cc558776c4fd5.1613031055.git.matti.vaittinen@fi.rohmeurope.com/
> Fix the ID table to match this.

This looks unrelated to the rest of the series?
Vaittinen, Matti April 4, 2021, 3:51 p.m. UTC | #2
On Fri, 2021-04-02 at 18:19 +0100, Mark Brown wrote:
> On Thu, Mar 11, 2021 at 12:24:29PM +0200, Matti Vaittinen wrote:
> > Driver name was changed in MFD cell:
> > https://lore.kernel.org/lkml/560b9748094392493ebf7af11b6cc558776c4fd5.1613031055.git.matti.vaittinen@fi.rohmeurope.com/
> > Fix the ID table to match this.
> 
> This looks unrelated to the rest of the series?

Correct. I think I mentioned that somewhere - or at least I intended to
do that. Probably in the cover-letter.

I included this change to the series just to avoid conflicts. Do you
want me to send it separately?

Best Regards
	Matti Vaittinen
diff mbox series

Patch

diff --git a/drivers/regulator/bd9576-regulator.c b/drivers/regulator/bd9576-regulator.c
index 0d55d383d2aa..aeb816cf9ad3 100644
--- a/drivers/regulator/bd9576-regulator.c
+++ b/drivers/regulator/bd9576-regulator.c
@@ -1117,8 +1117,8 @@  static int bd957x_probe(struct platform_device *pdev)
 }
 
 static const struct platform_device_id bd957x_pmic_id[] = {
-	{ "bd9573-pmic", ROHM_CHIP_TYPE_BD9573 },
-	{ "bd9576-pmic", ROHM_CHIP_TYPE_BD9576 },
+	{ "bd9573-regulator", ROHM_CHIP_TYPE_BD9573 },
+	{ "bd9576-regulator", ROHM_CHIP_TYPE_BD9576 },
 	{ },
 };
 MODULE_DEVICE_TABLE(platform, bd957x_pmic_id);