* [PATCH v2] drivers: regulator: 88pm800: fix warning same module names
@ 2019-06-12 8:11 Anders Roxell
2019-06-12 12:21 ` Mark Brown
2019-06-12 15:59 ` Applied "regulator: 88pm800: fix warning same module names" to the regulator tree Mark Brown
0 siblings, 2 replies; 5+ messages in thread
From: Anders Roxell @ 2019-06-12 8:11 UTC (permalink / raw)
To: lgirdwood, broonie; +Cc: linux-kernel, Anders Roxell
When building with CONFIG_MFD_88PM800 and CONFIG_REGULATOR_88PM800
enabled as loadable modules, we see the following warning:
warning: same module names found:
drivers/regulator/88pm800.ko
drivers/mfd/88pm800.ko
Rework so that the file is named 88pm800-regulator.
Signed-off-by: Anders Roxell <anders.roxell@linaro.org>
---
drivers/regulator/{88pm800.c => 88pm800-regulator.c} | 0
drivers/regulator/Makefile | 2 +-
2 files changed, 1 insertion(+), 1 deletion(-)
rename drivers/regulator/{88pm800.c => 88pm800-regulator.c} (100%)
diff --git a/drivers/regulator/88pm800.c b/drivers/regulator/88pm800-regulator.c
similarity index 100%
rename from drivers/regulator/88pm800.c
rename to drivers/regulator/88pm800-regulator.c
diff --git a/drivers/regulator/Makefile b/drivers/regulator/Makefile
index 76e78fa449a2..c15b0b613766 100644
--- a/drivers/regulator/Makefile
+++ b/drivers/regulator/Makefile
@@ -11,7 +11,7 @@ obj-$(CONFIG_REGULATOR_VIRTUAL_CONSUMER) += virtual.o
obj-$(CONFIG_REGULATOR_USERSPACE_CONSUMER) += userspace-consumer.o
obj-$(CONFIG_REGULATOR_88PG86X) += 88pg86x.o
-obj-$(CONFIG_REGULATOR_88PM800) += 88pm800.o
+obj-$(CONFIG_REGULATOR_88PM800) += 88pm800-regulator.o
obj-$(CONFIG_REGULATOR_88PM8607) += 88pm8607.o
obj-$(CONFIG_REGULATOR_CPCAP) += cpcap-regulator.o
obj-$(CONFIG_REGULATOR_AAT2870) += aat2870-regulator.o
--
2.20.1
^ permalink raw reply related [flat|nested] 5+ messages in thread
* Re: [PATCH v2] drivers: regulator: 88pm800: fix warning same module names
2019-06-12 8:11 [PATCH v2] drivers: regulator: 88pm800: fix warning same module names Anders Roxell
@ 2019-06-12 12:21 ` Mark Brown
2019-06-12 14:14 ` Anders Roxell
2019-06-12 15:59 ` Applied "regulator: 88pm800: fix warning same module names" to the regulator tree Mark Brown
1 sibling, 1 reply; 5+ messages in thread
From: Mark Brown @ 2019-06-12 12:21 UTC (permalink / raw)
To: Anders Roxell; +Cc: lgirdwood, linux-kernel
[-- Attachment #1: Type: text/plain, Size: 320 bytes --]
On Wed, Jun 12, 2019 at 10:11:58AM +0200, Anders Roxell wrote:
> When building with CONFIG_MFD_88PM800 and CONFIG_REGULATOR_88PM800
> enabled as loadable modules, we see the following warning:
Please use subject lines matching the style for the subsystem. This
makes it easier for people to identify relevant patches.
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 488 bytes --]
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH v2] drivers: regulator: 88pm800: fix warning same module names
2019-06-12 12:21 ` Mark Brown
@ 2019-06-12 14:14 ` Anders Roxell
2019-06-12 16:53 ` Mark Brown
0 siblings, 1 reply; 5+ messages in thread
From: Anders Roxell @ 2019-06-12 14:14 UTC (permalink / raw)
To: Mark Brown; +Cc: Liam Girdwood, Linux Kernel Mailing List
On Wed, 12 Jun 2019 at 14:21, Mark Brown <broonie@kernel.org> wrote:
>
> On Wed, Jun 12, 2019 at 10:11:58AM +0200, Anders Roxell wrote:
> > When building with CONFIG_MFD_88PM800 and CONFIG_REGULATOR_88PM800
> > enabled as loadable modules, we see the following warning:
>
> Please use subject lines matching the style for the subsystem. This
> makes it easier for people to identify relevant patches.
I should have payed more attention, sorry.
Do you want me to send a v3 to fix the subject line for this patch?
Cheers,
Anders
^ permalink raw reply [flat|nested] 5+ messages in thread
* Applied "regulator: 88pm800: fix warning same module names" to the regulator tree
2019-06-12 8:11 [PATCH v2] drivers: regulator: 88pm800: fix warning same module names Anders Roxell
2019-06-12 12:21 ` Mark Brown
@ 2019-06-12 15:59 ` Mark Brown
1 sibling, 0 replies; 5+ messages in thread
From: Mark Brown @ 2019-06-12 15:59 UTC (permalink / raw)
To: Anders Roxell; +Cc: broonie, lgirdwood, linux-kernel, Mark Brown
The patch
regulator: 88pm800: fix warning same module names
has been applied to the regulator tree at
https://git.kernel.org/pub/scm/linux/kernel/git/broonie/regulator.git for-5.3
All being well this means that it will be integrated into the linux-next
tree (usually sometime in the next 24 hours) and sent to Linus during
the next merge window (or sooner if it is a bug fix), however if
problems are discovered then the patch may be dropped or reverted.
You may get further e-mails resulting from automated or manual testing
and review of the tree, please engage with people reporting problems and
send followup patches addressing any issues that are reported if needed.
If any updates are required or you are submitting further changes they
should be sent as incremental updates against current git, existing
patches will not be replaced.
Please add any relevant lists and maintainers to the CCs when replying
to this mail.
Thanks,
Mark
From 6f10419187d0d5fe395e2a2f2a64370961bf02a3 Mon Sep 17 00:00:00 2001
From: Anders Roxell <anders.roxell@linaro.org>
Date: Wed, 12 Jun 2019 10:11:58 +0200
Subject: [PATCH] regulator: 88pm800: fix warning same module names
When building with CONFIG_MFD_88PM800 and CONFIG_REGULATOR_88PM800
enabled as loadable modules, we see the following warning:
warning: same module names found:
drivers/regulator/88pm800.ko
drivers/mfd/88pm800.ko
Rework so that the file is named 88pm800-regulator.
Signed-off-by: Anders Roxell <anders.roxell@linaro.org>
Signed-off-by: Mark Brown <broonie@kernel.org>
---
drivers/regulator/{88pm800.c => 88pm800-regulator.c} | 0
drivers/regulator/Makefile | 2 +-
2 files changed, 1 insertion(+), 1 deletion(-)
rename drivers/regulator/{88pm800.c => 88pm800-regulator.c} (100%)
diff --git a/drivers/regulator/88pm800.c b/drivers/regulator/88pm800-regulator.c
similarity index 100%
rename from drivers/regulator/88pm800.c
rename to drivers/regulator/88pm800-regulator.c
diff --git a/drivers/regulator/Makefile b/drivers/regulator/Makefile
index 76e78fa449a2..c15b0b613766 100644
--- a/drivers/regulator/Makefile
+++ b/drivers/regulator/Makefile
@@ -11,7 +11,7 @@ obj-$(CONFIG_REGULATOR_VIRTUAL_CONSUMER) += virtual.o
obj-$(CONFIG_REGULATOR_USERSPACE_CONSUMER) += userspace-consumer.o
obj-$(CONFIG_REGULATOR_88PG86X) += 88pg86x.o
-obj-$(CONFIG_REGULATOR_88PM800) += 88pm800.o
+obj-$(CONFIG_REGULATOR_88PM800) += 88pm800-regulator.o
obj-$(CONFIG_REGULATOR_88PM8607) += 88pm8607.o
obj-$(CONFIG_REGULATOR_CPCAP) += cpcap-regulator.o
obj-$(CONFIG_REGULATOR_AAT2870) += aat2870-regulator.o
--
2.20.1
^ permalink raw reply related [flat|nested] 5+ messages in thread
* Re: [PATCH v2] drivers: regulator: 88pm800: fix warning same module names
2019-06-12 14:14 ` Anders Roxell
@ 2019-06-12 16:53 ` Mark Brown
0 siblings, 0 replies; 5+ messages in thread
From: Mark Brown @ 2019-06-12 16:53 UTC (permalink / raw)
To: Anders Roxell; +Cc: Liam Girdwood, Linux Kernel Mailing List
[-- Attachment #1: Type: text/plain, Size: 419 bytes --]
On Wed, Jun 12, 2019 at 04:14:38PM +0200, Anders Roxell wrote:
> On Wed, 12 Jun 2019 at 14:21, Mark Brown <broonie@kernel.org> wrote:
> > Please use subject lines matching the style for the subsystem. This
> > makes it easier for people to identify relevant patches.
> I should have payed more attention, sorry.
> Do you want me to send a v3 to fix the subject line for this patch?
It's OK, I fixed it up by hand.
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 488 bytes --]
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2019-06-12 16:53 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2019-06-12 8:11 [PATCH v2] drivers: regulator: 88pm800: fix warning same module names Anders Roxell
2019-06-12 12:21 ` Mark Brown
2019-06-12 14:14 ` Anders Roxell
2019-06-12 16:53 ` Mark Brown
2019-06-12 15:59 ` Applied "regulator: 88pm800: fix warning same module names" to the regulator tree Mark Brown
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox