* [PATCH] bus: simple-pm-bus: Use ARCH_RENESAS
@ 2016-03-03 1:39 Simon Horman
2016-03-03 8:31 ` Geert Uytterhoeven
0 siblings, 1 reply; 6+ messages in thread
From: Simon Horman @ 2016-03-03 1:39 UTC (permalink / raw)
To: linux-arm-kernel
Make use of ARCH_RENESAS in place of ARCH_SHMOBILE.
This is part of an ongoing process to migrate from ARCH_SHMOBILE to
ARCH_RENESAS the motivation for which being that RENESAS seems to be a more
appropriate name than SHMOBILE for the majority of Renesas ARM based SoCs.
Signed-off-by: Simon Horman <horms+renesas@verge.net.au>
---
drivers/bus/Kconfig | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
v4.5-rc1
diff --git a/drivers/bus/Kconfig b/drivers/bus/Kconfig
index 129d47bcc5fc..c10c6def1565 100644
--- a/drivers/bus/Kconfig
+++ b/drivers/bus/Kconfig
@@ -110,7 +110,7 @@ config OMAP_OCP2SCP
config SIMPLE_PM_BUS
bool "Simple Power-Managed Bus Driver"
depends on OF && PM
- depends on ARCH_SHMOBILE || COMPILE_TEST
+ depends on ARCH_RENESAS || COMPILE_TEST
help
Driver for transparent busses that don't need a real driver, but
where the bus controller is part of a PM domain, or under the control
--
2.1.4
^ permalink raw reply related [flat|nested] 6+ messages in thread
* [PATCH] bus: simple-pm-bus: Use ARCH_RENESAS
2016-03-03 1:39 [PATCH] bus: simple-pm-bus: Use ARCH_RENESAS Simon Horman
@ 2016-03-03 8:31 ` Geert Uytterhoeven
2016-03-04 5:20 ` Simon Horman
0 siblings, 1 reply; 6+ messages in thread
From: Geert Uytterhoeven @ 2016-03-03 8:31 UTC (permalink / raw)
To: linux-arm-kernel
On Thu, Mar 3, 2016 at 2:39 AM, Simon Horman <horms+renesas@verge.net.au> wrote:
> Make use of ARCH_RENESAS in place of ARCH_SHMOBILE.
>
> This is part of an ongoing process to migrate from ARCH_SHMOBILE to
> ARCH_RENESAS the motivation for which being that RENESAS seems to be a more
> appropriate name than SHMOBILE for the majority of Renesas ARM based SoCs.
>
> Signed-off-by: Simon Horman <horms+renesas@verge.net.au>
Acked-by: Geert Uytterhoeven <geert+renesas@glider.be>
Gr{oetje,eeting}s,
Geert
--
Geert Uytterhoeven -- There's lots of Linux beyond ia32 -- geert at linux-m68k.org
In personal conversations with technical people, I call myself a hacker. But
when I'm talking to journalists I just say "programmer" or something like that.
-- Linus Torvalds
^ permalink raw reply [flat|nested] 6+ messages in thread
* [PATCH] bus: simple-pm-bus: Use ARCH_RENESAS
2016-03-03 8:31 ` Geert Uytterhoeven
@ 2016-03-04 5:20 ` Simon Horman
2016-03-07 13:22 ` Geert Uytterhoeven
0 siblings, 1 reply; 6+ messages in thread
From: Simon Horman @ 2016-03-04 5:20 UTC (permalink / raw)
To: linux-arm-kernel
On Thu, Mar 03, 2016 at 09:31:49AM +0100, Geert Uytterhoeven wrote:
> On Thu, Mar 3, 2016 at 2:39 AM, Simon Horman <horms+renesas@verge.net.au> wrote:
> > Make use of ARCH_RENESAS in place of ARCH_SHMOBILE.
> >
> > This is part of an ongoing process to migrate from ARCH_SHMOBILE to
> > ARCH_RENESAS the motivation for which being that RENESAS seems to be a more
> > appropriate name than SHMOBILE for the majority of Renesas ARM based SoCs.
> >
> > Signed-off-by: Simon Horman <horms+renesas@verge.net.au>
>
> Acked-by: Geert Uytterhoeven <geert+renesas@glider.be>
I'm a little unsure of who should take this but for now I will
queue it up in next with a view to sending a pull request to Linus
for v4.6. I'm open to other ideas.
^ permalink raw reply [flat|nested] 6+ messages in thread
* [PATCH] bus: simple-pm-bus: Use ARCH_RENESAS
2016-03-04 5:20 ` Simon Horman
@ 2016-03-07 13:22 ` Geert Uytterhoeven
2016-03-08 0:29 ` Simon Horman
0 siblings, 1 reply; 6+ messages in thread
From: Geert Uytterhoeven @ 2016-03-07 13:22 UTC (permalink / raw)
To: linux-arm-kernel
On Fri, Mar 4, 2016 at 6:20 AM, Simon Horman <horms@verge.net.au> wrote:
> On Thu, Mar 03, 2016 at 09:31:49AM +0100, Geert Uytterhoeven wrote:
>> On Thu, Mar 3, 2016 at 2:39 AM, Simon Horman <horms+renesas@verge.net.au> wrote:
>> > Make use of ARCH_RENESAS in place of ARCH_SHMOBILE.
>> >
>> > This is part of an ongoing process to migrate from ARCH_SHMOBILE to
>> > ARCH_RENESAS the motivation for which being that RENESAS seems to be a more
>> > appropriate name than SHMOBILE for the majority of Renesas ARM based SoCs.
>> >
>> > Signed-off-by: Simon Horman <horms+renesas@verge.net.au>
>>
>> Acked-by: Geert Uytterhoeven <geert+renesas@glider.be>
>
> I'm a little unsure of who should take this but for now I will
> queue it up in next with a view to sending a pull request to Linus
> for v4.6. I'm open to other ideas.
All but two entries in drivers/bus/Kconfig are for ARM platforms (the other two
are for MIPS platforms), so I think arm-soc is appropriate.
Alternatively, GregKH?
Gr{oetje,eeting}s,
Geert
--
Geert Uytterhoeven -- There's lots of Linux beyond ia32 -- geert at linux-m68k.org
In personal conversations with technical people, I call myself a hacker. But
when I'm talking to journalists I just say "programmer" or something like that.
-- Linus Torvalds
^ permalink raw reply [flat|nested] 6+ messages in thread
* [PATCH] bus: simple-pm-bus: Use ARCH_RENESAS
2016-03-07 13:22 ` Geert Uytterhoeven
@ 2016-03-08 0:29 ` Simon Horman
0 siblings, 0 replies; 6+ messages in thread
From: Simon Horman @ 2016-03-08 0:29 UTC (permalink / raw)
To: linux-arm-kernel
On Mon, Mar 07, 2016 at 02:22:57PM +0100, Geert Uytterhoeven wrote:
> On Fri, Mar 4, 2016 at 6:20 AM, Simon Horman <horms@verge.net.au> wrote:
> > On Thu, Mar 03, 2016 at 09:31:49AM +0100, Geert Uytterhoeven wrote:
> >> On Thu, Mar 3, 2016 at 2:39 AM, Simon Horman <horms+renesas@verge.net.au> wrote:
> >> > Make use of ARCH_RENESAS in place of ARCH_SHMOBILE.
> >> >
> >> > This is part of an ongoing process to migrate from ARCH_SHMOBILE to
> >> > ARCH_RENESAS the motivation for which being that RENESAS seems to be a more
> >> > appropriate name than SHMOBILE for the majority of Renesas ARM based SoCs.
> >> >
> >> > Signed-off-by: Simon Horman <horms+renesas@verge.net.au>
> >>
> >> Acked-by: Geert Uytterhoeven <geert+renesas@glider.be>
> >
> > I'm a little unsure of who should take this but for now I will
> > queue it up in next with a view to sending a pull request to Linus
> > for v4.6. I'm open to other ideas.
>
> All but two entries in drivers/bus/Kconfig are for ARM platforms (the
> other two are for MIPS platforms), so I think arm-soc is appropriate.
>
> Alternatively, GregKH?
Point taken. I'll queue it up for v4.7 for arm-soc.
^ permalink raw reply [flat|nested] 6+ messages in thread
* [PATCH] bus: simple-pm-bus: Use ARCH_RENESAS
2016-04-04 1:23 [GIT PULL] Renesas ARM Based SoC Simple PM Bus Updates for v4.7 Simon Horman
@ 2016-04-04 1:23 ` Simon Horman
0 siblings, 0 replies; 6+ messages in thread
From: Simon Horman @ 2016-04-04 1:23 UTC (permalink / raw)
To: linux-arm-kernel
Make use of ARCH_RENESAS in place of ARCH_SHMOBILE.
This is part of an ongoing process to migrate from ARCH_SHMOBILE to
ARCH_RENESAS the motivation for which being that RENESAS seems to be a more
appropriate name than SHMOBILE for the majority of Renesas ARM based SoCs.
Acked-by: Geert Uytterhoeven <geert+renesas@glider.be>
Signed-off-by: Simon Horman <horms+renesas@verge.net.au>
---
drivers/bus/Kconfig | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/bus/Kconfig b/drivers/bus/Kconfig
index d4a3a3133da5..67cebd3d7f2d 100644
--- a/drivers/bus/Kconfig
+++ b/drivers/bus/Kconfig
@@ -110,7 +110,7 @@ config OMAP_OCP2SCP
config SIMPLE_PM_BUS
bool "Simple Power-Managed Bus Driver"
depends on OF && PM
- depends on ARCH_SHMOBILE || COMPILE_TEST
+ depends on ARCH_RENESAS || COMPILE_TEST
help
Driver for transparent busses that don't need a real driver, but
where the bus controller is part of a PM domain, or under the control
--
2.1.4
^ permalink raw reply related [flat|nested] 6+ messages in thread
end of thread, other threads:[~2016-04-04 1:23 UTC | newest]
Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-03-03 1:39 [PATCH] bus: simple-pm-bus: Use ARCH_RENESAS Simon Horman
2016-03-03 8:31 ` Geert Uytterhoeven
2016-03-04 5:20 ` Simon Horman
2016-03-07 13:22 ` Geert Uytterhoeven
2016-03-08 0:29 ` Simon Horman
-- strict thread matches above, loose matches on Subject: below --
2016-04-04 1:23 [GIT PULL] Renesas ARM Based SoC Simple PM Bus Updates for v4.7 Simon Horman
2016-04-04 1:23 ` [PATCH] bus: simple-pm-bus: Use ARCH_RENESAS Simon Horman
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).