linux-arm-kernel.lists.infradead.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] ARM: at91: remove redundant dependency
@ 2013-11-20  7:23 Michael Opdenacker
  2013-11-20 10:16 ` Nicolas Ferre
  2013-12-05 16:00 ` Nicolas Ferre
  0 siblings, 2 replies; 4+ messages in thread
From: Michael Opdenacker @ 2013-11-20  7:23 UTC (permalink / raw)
  To: linux-arm-kernel

From: Yanis Moreno <yanis.moreno63@gmail.com>

This removes the "depends on SOC_SAM_V7" statement
in a Kconfig section that's under an "if SOC_SAM_V7"
condition (same parameter).

Signed-off-by: Yanis Moreno <yanis.moreno63@gmail.com>
Reviewed-by: Michael Opdenacker <michael.opdenacker@free-electrons.com>

---
 arch/arm/mach-at91/Kconfig |    1 -
 1 file changed, 1 deletion(-)

diff --git a/arch/arm/mach-at91/Kconfig b/arch/arm/mach-at91/Kconfig
index 699b71e..d1b3fe5 100644
--- a/arch/arm/mach-at91/Kconfig
+++ b/arch/arm/mach-at91/Kconfig
@@ -61,7 +61,6 @@ comment "Atmel AT91 Processor"
 if SOC_SAM_V7
 config SOC_SAMA5D3
 	bool "SAMA5D3 family"
-	depends on SOC_SAM_V7
 	select SOC_SAMA5
 	select HAVE_FB_ATMEL
 	select HAVE_AT91_DBGU1
-- 
1.7.9.5

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

* [PATCH] ARM: at91: remove redundant dependency
  2013-11-20  7:23 [PATCH] ARM: at91: remove redundant dependency Michael Opdenacker
@ 2013-11-20 10:16 ` Nicolas Ferre
  2013-12-05 16:00 ` Nicolas Ferre
  1 sibling, 0 replies; 4+ messages in thread
From: Nicolas Ferre @ 2013-11-20 10:16 UTC (permalink / raw)
  To: linux-arm-kernel

On 20/11/2013 08:23, Michael Opdenacker :
> From: Yanis Moreno <yanis.moreno63@gmail.com>
>
> This removes the "depends on SOC_SAM_V7" statement
> in a Kconfig section that's under an "if SOC_SAM_V7"
> condition (same parameter).
>
> Signed-off-by: Yanis Moreno <yanis.moreno63@gmail.com>
> Reviewed-by: Michael Opdenacker <michael.opdenacker@free-electrons.com>
>

Acked-by: Nicolas Ferre <nicolas.ferre@atmel.com>

Thanks for this fix. Integrated in at91-3.14-cleanup branch.
Best regards.

> ---
>   arch/arm/mach-at91/Kconfig |    1 -
>   1 file changed, 1 deletion(-)
>
> diff --git a/arch/arm/mach-at91/Kconfig b/arch/arm/mach-at91/Kconfig
> index 699b71e..d1b3fe5 100644
> --- a/arch/arm/mach-at91/Kconfig
> +++ b/arch/arm/mach-at91/Kconfig
> @@ -61,7 +61,6 @@ comment "Atmel AT91 Processor"
>   if SOC_SAM_V7
>   config SOC_SAMA5D3
>   	bool "SAMA5D3 family"
> -	depends on SOC_SAM_V7
>   	select SOC_SAMA5
>   	select HAVE_FB_ATMEL
>   	select HAVE_AT91_DBGU1
>


-- 
Nicolas Ferre

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

* [PATCH] ARM: at91: remove redundant dependency
  2013-11-20  7:23 [PATCH] ARM: at91: remove redundant dependency Michael Opdenacker
  2013-11-20 10:16 ` Nicolas Ferre
@ 2013-12-05 16:00 ` Nicolas Ferre
  2013-12-12  0:23   ` Olof Johansson
  1 sibling, 1 reply; 4+ messages in thread
From: Nicolas Ferre @ 2013-12-05 16:00 UTC (permalink / raw)
  To: linux-arm-kernel

From: Yanis Moreno <yanis.moreno63@gmail.com>

This removes the "depends on SOC_SAM_V7" statement
in a Kconfig section that's under an "if SOC_SAM_V7"
condition (same parameter).

Signed-off-by: Yanis Moreno <yanis.moreno63@gmail.com>
Reviewed-by: Michael Opdenacker <michael.opdenacker@free-electrons.com>
Signed-off-by: Nicolas Ferre <nicolas.ferre@atmel.com>
---
Hi Olof,

This is an additional patch for cleanup. I didn't include it in my previous
"cleanup" branch as I had wanted to keep it focused on the move to CCF.

As you said that you are okay with applying patches and that I have only one
related to "cleanup" for the moment, I send it to you.

Thanks, bye,
  Nicolas Ferre

 arch/arm/mach-at91/Kconfig | 1 -
 1 file changed, 1 deletion(-)

diff --git a/arch/arm/mach-at91/Kconfig b/arch/arm/mach-at91/Kconfig
index b4f7d6ffa30b..aac7814db4f9 100644
--- a/arch/arm/mach-at91/Kconfig
+++ b/arch/arm/mach-at91/Kconfig
@@ -82,7 +82,6 @@ comment "Atmel AT91 Processor"
 if SOC_SAM_V7
 config SOC_SAMA5D3
 	bool "SAMA5D3 family"
-	depends on SOC_SAM_V7
 	select SOC_SAMA5
 	select HAVE_FB_ATMEL
 	select HAVE_AT91_DBGU1
-- 
1.8.2.2

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

* [PATCH] ARM: at91: remove redundant dependency
  2013-12-05 16:00 ` Nicolas Ferre
@ 2013-12-12  0:23   ` Olof Johansson
  0 siblings, 0 replies; 4+ messages in thread
From: Olof Johansson @ 2013-12-12  0:23 UTC (permalink / raw)
  To: linux-arm-kernel

On Thu, Dec 05, 2013 at 05:00:08PM +0100, Nicolas Ferre wrote:
> From: Yanis Moreno <yanis.moreno63@gmail.com>
> 
> This removes the "depends on SOC_SAM_V7" statement
> in a Kconfig section that's under an "if SOC_SAM_V7"
> condition (same parameter).
> 
> Signed-off-by: Yanis Moreno <yanis.moreno63@gmail.com>
> Reviewed-by: Michael Opdenacker <michael.opdenacker@free-electrons.com>
> Signed-off-by: Nicolas Ferre <nicolas.ferre@atmel.com>
> ---
> Hi Olof,
> 
> This is an additional patch for cleanup. I didn't include it in my previous
> "cleanup" branch as I had wanted to keep it focused on the move to CCF.
> 
> As you said that you are okay with applying patches and that I have only one
> related to "cleanup" for the moment, I send it to you.

Applied. Thanks.

-Olof

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

end of thread, other threads:[~2013-12-12  0:23 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-11-20  7:23 [PATCH] ARM: at91: remove redundant dependency Michael Opdenacker
2013-11-20 10:16 ` Nicolas Ferre
2013-12-05 16:00 ` Nicolas Ferre
2013-12-12  0:23   ` Olof Johansson

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