linux-next.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* linux-next: manual merge of the gpio tree with the arm-soc and cortex trees
@ 2013-11-06  8:14 Stephen Rothwell
  2013-11-06  8:41 ` Uwe Kleine-König
  0 siblings, 1 reply; 3+ messages in thread
From: Stephen Rothwell @ 2013-11-06  8:14 UTC (permalink / raw)
  To: Linus Walleij
  Cc: linux-next, linux-kernel, Olof Johansson, Arnd Bergmann,
	linux-arm-kernel, "Uwe Kleine-König"

[-- Attachment #1: Type: text/plain, Size: 1583 bytes --]

Hi Linus,

Today's linux-next merge of the gpio tree got a conflict in
arch/arm/Kconfig between commit f3372c01816e ("ARM: gemini: convert to
GENERIC_CLOCKEVENTS") from the arm-soc tree and f5caa3b59e18 ("ARM:
deprecate mach/timex.h for !ARCH_MULTIPLATFORM") from the cortex tree and
commits ffde39ea61ea ("ARM: mmp: delete the custom GPIO header"),
88f718e3fa4d ("ARM: pxa: delete the custom GPIO header") and 85649711a895
("ARM: gemini: delete <mach/gpio.h>") from the gpio tree.

I fixed it up (see below) and can carry the fix as necessary (no action
is required).

-- 
Cheers,
Stephen Rothwell                    sfr@canb.auug.org.au

diff --cc arch/arm/Kconfig
index 568d6471dd18,c6debe07f036..000000000000
--- a/arch/arm/Kconfig
+++ b/arch/arm/Kconfig
@@@ -397,10 -386,8 +397,9 @@@ config ARCH_CLPS711
  config ARCH_GEMINI
  	bool "Cortina Systems Gemini"
  	select ARCH_REQUIRE_GPIOLIB
 -	select ARCH_USES_GETTIMEOFFSET
 +	select CLKSRC_MMIO
  	select CPU_FA526
 +	select GENERIC_CLOCKEVENTS
- 	select NEED_MACH_GPIO_H
  	help
  	  Support for the Cortina Systems Gemini family SoCs
  
@@@ -593,8 -558,6 +592,7 @@@ config ARCH_MM
  	select GPIO_PXA
  	select IRQ_DOMAIN
  	select MULTI_IRQ_HANDLER
- 	select NEED_MACH_GPIO_H
 +	select NEED_MACH_TIMEX_H
  	select PINCTRL
  	select PLAT_PXA
  	select SPARSE_IRQ
@@@ -658,8 -620,6 +656,7 @@@ config ARCH_PX
  	select GPIO_PXA
  	select HAVE_IDE
  	select MULTI_IRQ_HANDLER
- 	select NEED_MACH_GPIO_H
 +	select NEED_MACH_TIMEX_H
  	select PLAT_PXA
  	select SPARSE_IRQ
  	help

[-- Attachment #2: Type: application/pgp-signature, Size: 836 bytes --]

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

* Re: linux-next: manual merge of the gpio tree with the arm-soc and cortex trees
  2013-11-06  8:14 linux-next: manual merge of the gpio tree with the arm-soc and cortex trees Stephen Rothwell
@ 2013-11-06  8:41 ` Uwe Kleine-König
  2013-11-07 23:38   ` Stephen Rothwell
  0 siblings, 1 reply; 3+ messages in thread
From: Uwe Kleine-König @ 2013-11-06  8:41 UTC (permalink / raw)
  To: Stephen Rothwell
  Cc: Linus Walleij, linux-next, linux-kernel, Olof Johansson,
	Arnd Bergmann, linux-arm-kernel

Hello Stephen,

On Wed, Nov 06, 2013 at 07:14:54PM +1100, Stephen Rothwell wrote:
> Hi Linus,
> 
> Today's linux-next merge of the gpio tree got a conflict in
> arch/arm/Kconfig between commit f3372c01816e ("ARM: gemini: convert to
> GENERIC_CLOCKEVENTS") from the arm-soc tree and f5caa3b59e18 ("ARM:
> deprecate mach/timex.h for !ARCH_MULTIPLATFORM") from the cortex tree and
> commits ffde39ea61ea ("ARM: mmp: delete the custom GPIO header"),
> 88f718e3fa4d ("ARM: pxa: delete the custom GPIO header") and 85649711a895
> ("ARM: gemini: delete <mach/gpio.h>") from the gpio tree.
> 
> I fixed it up (see below) and can carry the fix as necessary (no action
> is required).
looks correct.

BTW, "cortex" is a bit too general. My tree is only about Cortex-M. Also
you can drop -2.6 from the URL.

Best regards
Uwe
> 
> -- 
> Cheers,
> Stephen Rothwell                    sfr@canb.auug.org.au
> 
> diff --cc arch/arm/Kconfig
> index 568d6471dd18,c6debe07f036..000000000000
> --- a/arch/arm/Kconfig
> +++ b/arch/arm/Kconfig
> @@@ -397,10 -386,8 +397,9 @@@ config ARCH_CLPS711
>   config ARCH_GEMINI
>   	bool "Cortina Systems Gemini"
>   	select ARCH_REQUIRE_GPIOLIB
>  -	select ARCH_USES_GETTIMEOFFSET
>  +	select CLKSRC_MMIO
>   	select CPU_FA526
>  +	select GENERIC_CLOCKEVENTS
> - 	select NEED_MACH_GPIO_H
>   	help
>   	  Support for the Cortina Systems Gemini family SoCs
>   
> @@@ -593,8 -558,6 +592,7 @@@ config ARCH_MM
>   	select GPIO_PXA
>   	select IRQ_DOMAIN
>   	select MULTI_IRQ_HANDLER
> - 	select NEED_MACH_GPIO_H
>  +	select NEED_MACH_TIMEX_H
>   	select PINCTRL
>   	select PLAT_PXA
>   	select SPARSE_IRQ
> @@@ -658,8 -620,6 +656,7 @@@ config ARCH_PX
>   	select GPIO_PXA
>   	select HAVE_IDE
>   	select MULTI_IRQ_HANDLER
> - 	select NEED_MACH_GPIO_H
>  +	select NEED_MACH_TIMEX_H
>   	select PLAT_PXA
>   	select SPARSE_IRQ
>   	help



-- 
Pengutronix e.K.                           | Uwe Kleine-König            |
Industrial Linux Solutions                 | http://www.pengutronix.de/  |

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

* Re: linux-next: manual merge of the gpio tree with the arm-soc and cortex trees
  2013-11-06  8:41 ` Uwe Kleine-König
@ 2013-11-07 23:38   ` Stephen Rothwell
  0 siblings, 0 replies; 3+ messages in thread
From: Stephen Rothwell @ 2013-11-07 23:38 UTC (permalink / raw)
  To: "Uwe Kleine-König"
  Cc: Linus Walleij, linux-next, linux-kernel, Olof Johansson,
	Arnd Bergmann, linux-arm-kernel

[-- Attachment #1: Type: text/plain, Size: 317 bytes --]

Hi Uwe,

On Wed, 6 Nov 2013 09:41:17 +0100 Uwe Kleine-König <u.kleine-koenig@pengutronix.de> wrote:
>
> BTW, "cortex" is a bit too general. My tree is only about Cortex-M. Also
> you can drop -2.6 from the URL.

Updated both, thanks.

-- 
Cheers,
Stephen Rothwell                    sfr@canb.auug.org.au

[-- Attachment #2: Type: application/pgp-signature, Size: 836 bytes --]

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

end of thread, other threads:[~2013-11-07 23:38 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2013-11-06  8:14 linux-next: manual merge of the gpio tree with the arm-soc and cortex trees Stephen Rothwell
2013-11-06  8:41 ` Uwe Kleine-König
2013-11-07 23:38   ` Stephen Rothwell

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).