All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] clk: tango4: rename ARCH_TANGOX to ARCH_TANGO
@ 2016-01-29 14:07 Marc Gonzalez
  2016-01-30  0:29 ` Stephen Boyd
  0 siblings, 1 reply; 4+ messages in thread
From: Marc Gonzalez @ 2016-01-29 14:07 UTC (permalink / raw)
  To: Michael Turquette, Stephen Boyd; +Cc: linux-clk

Requested by arm-soc maintainer Kevin Hilman in v9 review.
http://article.gmane.org/gmane.linux.ports.arm.kernel/456331

Signed-off-by: Marc Gonzalez <marc_gonzalez@sigmadesigns.com>
---
IIUC, the merge window is now closed, but this patch might be
accepted in the clk-fixes branch, so that the corresponding
platform code successfully builds its clk driver.

https://git.kernel.org/cgit/linux/kernel/git/torvalds/linux.git/tree/arch/arm/mach-tango
---
 drivers/clk/Makefile | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/clk/Makefile b/drivers/clk/Makefile
index f4165bb9a270..f50cb257e0ba 100644
--- a/drivers/clk/Makefile
+++ b/drivers/clk/Makefile
@@ -42,7 +42,7 @@ obj-$(CONFIG_COMMON_CLK_SI514)		+= clk-si514.o
 obj-$(CONFIG_COMMON_CLK_SI570)		+= clk-si570.o
 obj-$(CONFIG_COMMON_CLK_CDCE925)	+= clk-cdce925.o
 obj-$(CONFIG_ARCH_STM32)		+= clk-stm32f4.o
-obj-$(CONFIG_ARCH_TANGOX)		+= clk-tango4.o
+obj-$(CONFIG_ARCH_TANGO)		+= clk-tango4.o
 obj-$(CONFIG_CLK_TWL6040)		+= clk-twl6040.o
 obj-$(CONFIG_ARCH_U300)			+= clk-u300.o
 obj-$(CONFIG_ARCH_VT8500)		+= clk-vt8500.o
-- 
2.6.3

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

* Re: [PATCH] clk: tango4: rename ARCH_TANGOX to ARCH_TANGO
  2016-01-29 14:07 [PATCH] clk: tango4: rename ARCH_TANGOX to ARCH_TANGO Marc Gonzalez
@ 2016-01-30  0:29 ` Stephen Boyd
  0 siblings, 0 replies; 4+ messages in thread
From: Stephen Boyd @ 2016-01-30  0:29 UTC (permalink / raw)
  To: Marc Gonzalez; +Cc: Michael Turquette, linux-clk

On 01/29, Marc Gonzalez wrote:
> Requested by arm-soc maintainer Kevin Hilman in v9 review.
> http://article.gmane.org/gmane.linux.ports.arm.kernel/456331
> 
> Signed-off-by: Marc Gonzalez <marc_gonzalez@sigmadesigns.com>
> ---

Applied to clk-fixes

-- 
Qualcomm Innovation Center, Inc. is a member of Code Aurora Forum,
a Linux Foundation Collaborative Project

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

* Re: [PATCH] clk: tango4: rename ARCH_TANGOX to ARCH_TANGO
  2016-01-15 13:25 Marc Gonzalez
@ 2016-01-20 12:13 ` Marc Gonzalez
  0 siblings, 0 replies; 4+ messages in thread
From: Marc Gonzalez @ 2016-01-20 12:13 UTC (permalink / raw)
  To: Michael Turquette, Stephen Boyd; +Cc: linux-clk

On 15/01/2016 14:25, Marc Gonzalez wrote:

> Requested by arm-soc maintainer Kevin Hilman in v9 review.
> http://article.gmane.org/gmane.linux.ports.arm.kernel/456331
> 
> Signed-off-by: Marc Gonzalez <marc_gonzalez@sigmadesigns.com>
> ---
>  drivers/clk/Makefile | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)

If I understand correctly, Linux maintainers are currently busy
pushing their trees into 4.5-rc1 ?

Can this trivial fix be included in 4.5-rc2 in order to match the
platform code that will go in 4.5-rc1 ?

https://git.kernel.org/cgit/linux/kernel/git/next/linux-next.git/tree/arch/arm/mach-tango/Kconfig

Regards.

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

* [PATCH] clk: tango4: rename ARCH_TANGOX to ARCH_TANGO
@ 2016-01-15 13:25 Marc Gonzalez
  2016-01-20 12:13 ` Marc Gonzalez
  0 siblings, 1 reply; 4+ messages in thread
From: Marc Gonzalez @ 2016-01-15 13:25 UTC (permalink / raw)
  To: Michael Turquette, Stephen Boyd; +Cc: linux-clk

Requested by arm-soc maintainer Kevin Hilman in v9 review.
http://article.gmane.org/gmane.linux.ports.arm.kernel/456331

Signed-off-by: Marc Gonzalez <marc_gonzalez@sigmadesigns.com>
---
 drivers/clk/Makefile | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/clk/Makefile b/drivers/clk/Makefile
index f4165bb9a270..f50cb257e0ba 100644
--- a/drivers/clk/Makefile
+++ b/drivers/clk/Makefile
@@ -42,7 +42,7 @@ obj-$(CONFIG_COMMON_CLK_SI514)		+= clk-si514.o
 obj-$(CONFIG_COMMON_CLK_SI570)		+= clk-si570.o
 obj-$(CONFIG_COMMON_CLK_CDCE925)	+= clk-cdce925.o
 obj-$(CONFIG_ARCH_STM32)		+= clk-stm32f4.o
-obj-$(CONFIG_ARCH_TANGOX)		+= clk-tango4.o
+obj-$(CONFIG_ARCH_TANGO)		+= clk-tango4.o
 obj-$(CONFIG_CLK_TWL6040)		+= clk-twl6040.o
 obj-$(CONFIG_ARCH_U300)			+= clk-u300.o
 obj-$(CONFIG_ARCH_VT8500)		+= clk-vt8500.o
-- 
2.6.3

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

end of thread, other threads:[~2016-01-30  0:29 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2016-01-29 14:07 [PATCH] clk: tango4: rename ARCH_TANGOX to ARCH_TANGO Marc Gonzalez
2016-01-30  0:29 ` Stephen Boyd
  -- strict thread matches above, loose matches on Subject: below --
2016-01-15 13:25 Marc Gonzalez
2016-01-20 12:13 ` Marc Gonzalez

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.