All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 1/2] ARM: multi_v7_defconfig: remove unnecessary CONFIG_GPIOLIB
@ 2013-01-24 18:59 Josh Cartwright
  2013-01-24 19:33 ` [PATCH 2/2] ARM: multi_v7_defconfig: add ARCH_ZYNQ Josh Cartwright
  2013-01-28 22:04 ` [PATCH 1/2] ARM: multi_v7_defconfig: remove unnecessary CONFIG_GPIOLIB Olof Johansson
  0 siblings, 2 replies; 6+ messages in thread
From: Josh Cartwright @ 2013-01-24 18:59 UTC (permalink / raw)
  To: linux-arm-kernel

Commit 38669e045dbf8f62a008898a7fb1e93975b3817c ("ARM: vexpress: Start
using new Versatile Express infrastructure") introduces a hard
dependency to GPIOLIB for the multi_v7_defconfig:

   ARCH_MULTI_V7 -> ARCH_VEXPRESS -> ARCH_REQUIRE_GPIOLIB -> GPIOLIB

Remove unnecessary explicit CONFIG_GPIOLIB=y from multi_v7_defconfig.

Signed-off-by: Josh Cartwright <josh.cartwright@ni.com>
---
 arch/arm/configs/multi_v7_defconfig | 1 -
 1 file changed, 1 deletion(-)

diff --git a/arch/arm/configs/multi_v7_defconfig b/arch/arm/configs/multi_v7_defconfig
index 2eeff1e..6862e76 100644
--- a/arch/arm/configs/multi_v7_defconfig
+++ b/arch/arm/configs/multi_v7_defconfig
@@ -39,7 +39,6 @@ CONFIG_I2C=y
 CONFIG_I2C_DESIGNWARE_PLATFORM=y
 CONFIG_SPI=y
 CONFIG_SPI_PL022=y
-CONFIG_GPIOLIB=y
 CONFIG_FB=y
 CONFIG_FB_ARMCLCD=y
 CONFIG_FRAMEBUFFER_CONSOLE=y
-- 
1.8.1.1

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

* [PATCH 2/2] ARM: multi_v7_defconfig: add ARCH_ZYNQ
  2013-01-24 18:59 [PATCH 1/2] ARM: multi_v7_defconfig: remove unnecessary CONFIG_GPIOLIB Josh Cartwright
@ 2013-01-24 19:33 ` Josh Cartwright
  2013-01-24 20:17   ` Josh Cartwright
  2013-01-28 22:04 ` [PATCH 1/2] ARM: multi_v7_defconfig: remove unnecessary CONFIG_GPIOLIB Olof Johansson
  1 sibling, 1 reply; 6+ messages in thread
From: Josh Cartwright @ 2013-01-24 19:33 UTC (permalink / raw)
  To: linux-arm-kernel

Cc: Michal Simek <michal.simek@ni.com>
Signed-off-by: Josh Cartwright <josh.cartwright@ni.com>
---
 arch/arm/configs/multi_v7_defconfig | 1 +
 1 file changed, 1 insertion(+)

diff --git a/arch/arm/configs/multi_v7_defconfig b/arch/arm/configs/multi_v7_defconfig
index 6862e76..e31d442 100644
--- a/arch/arm/configs/multi_v7_defconfig
+++ b/arch/arm/configs/multi_v7_defconfig
@@ -8,6 +8,7 @@ CONFIG_ARCH_HIGHBANK=y
 CONFIG_ARCH_SOCFPGA=y
 CONFIG_ARCH_SUNXI=y
 # CONFIG_ARCH_VEXPRESS_CORTEX_A5_A9_ERRATA is not set
+CONFIG_ARCH_ZYNQ=y
 CONFIG_ARM_ERRATA_754322=y
 CONFIG_SMP=y
 CONFIG_ARM_ARCH_TIMER=y
-- 
1.8.1.1

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

* [PATCH 2/2] ARM: multi_v7_defconfig: add ARCH_ZYNQ
  2013-01-24 19:33 ` [PATCH 2/2] ARM: multi_v7_defconfig: add ARCH_ZYNQ Josh Cartwright
@ 2013-01-24 20:17   ` Josh Cartwright
  2013-01-25 15:08     ` Michal Simek
  0 siblings, 1 reply; 6+ messages in thread
From: Josh Cartwright @ 2013-01-24 20:17 UTC (permalink / raw)
  To: linux-arm-kernel

On Thu, Jan 24, 2013 at 01:33:25PM -0600, Josh Cartwright wrote:
> Cc: Michal Simek <michal.simek@ni.com>

Ugh, my fingers typed '@ni.com' out of habit.  Corrected patch below
(and correct Cc added).

  Josh

-- 8< --
Subject: [PATCH] ARM: multi_v7_defconfig: add ARCH_ZYNQ

Cc: Michal Simek <michal.simek@xilinx.com>
Signed-off-by: Josh Cartwright <josh.cartwright@ni.com>
---
 arch/arm/configs/multi_v7_defconfig | 1 +
 1 file changed, 1 insertion(+)

diff --git a/arch/arm/configs/multi_v7_defconfig b/arch/arm/configs/multi_v7_defconfig
index 6862e76..e31d442 100644
--- a/arch/arm/configs/multi_v7_defconfig
+++ b/arch/arm/configs/multi_v7_defconfig
@@ -8,6 +8,7 @@ CONFIG_ARCH_HIGHBANK=y
 CONFIG_ARCH_SOCFPGA=y
 CONFIG_ARCH_SUNXI=y
 # CONFIG_ARCH_VEXPRESS_CORTEX_A5_A9_ERRATA is not set
+CONFIG_ARCH_ZYNQ=y
 CONFIG_ARM_ERRATA_754322=y
 CONFIG_SMP=y
 CONFIG_ARM_ARCH_TIMER=y
-- 
1.8.1.1

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

* [PATCH 2/2] ARM: multi_v7_defconfig: add ARCH_ZYNQ
  2013-01-24 20:17   ` Josh Cartwright
@ 2013-01-25 15:08     ` Michal Simek
  2013-01-28 22:03       ` Olof Johansson
  0 siblings, 1 reply; 6+ messages in thread
From: Michal Simek @ 2013-01-25 15:08 UTC (permalink / raw)
  To: linux-arm-kernel



> -----Original Message-----
> From: Josh Cartwright [mailto:josh.cartwright at ni.com]
> Sent: Thursday, January 24, 2013 9:17 PM
> To: arm at kernel.org; Rob Herring
> Cc: linux-arm-kernel at lists.infradead.org; Michal Simek
> Subject: Re: [PATCH 2/2] ARM: multi_v7_defconfig: add ARCH_ZYNQ
> 
> On Thu, Jan 24, 2013 at 01:33:25PM -0600, Josh Cartwright wrote:
> > Cc: Michal Simek <michal.simek@ni.com>
> 
> Ugh, my fingers typed '@ni.com' out of habit.  Corrected patch below (and
> correct Cc added).

Acked-by: Michal Simek <michal.simek@xilinx.com>

M

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

* [PATCH 2/2] ARM: multi_v7_defconfig: add ARCH_ZYNQ
  2013-01-25 15:08     ` Michal Simek
@ 2013-01-28 22:03       ` Olof Johansson
  0 siblings, 0 replies; 6+ messages in thread
From: Olof Johansson @ 2013-01-28 22:03 UTC (permalink / raw)
  To: linux-arm-kernel

On Fri, Jan 25, 2013 at 03:08:06PM +0000, Michal Simek wrote:
> 
> 
> > -----Original Message-----
> > From: Josh Cartwright [mailto:josh.cartwright at ni.com]
> > Sent: Thursday, January 24, 2013 9:17 PM
> > To: arm at kernel.org; Rob Herring
> > Cc: linux-arm-kernel at lists.infradead.org; Michal Simek
> > Subject: Re: [PATCH 2/2] ARM: multi_v7_defconfig: add ARCH_ZYNQ
> > 
> > On Thu, Jan 24, 2013 at 01:33:25PM -0600, Josh Cartwright wrote:
> > > Cc: Michal Simek <michal.simek@ni.com>
> > 
> > Ugh, my fingers typed '@ni.com' out of habit.  Corrected patch below (and
> > correct Cc added).
> 
> Acked-by: Michal Simek <michal.simek@xilinx.com>

Applied, thanks.

-Olof

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

* [PATCH 1/2] ARM: multi_v7_defconfig: remove unnecessary CONFIG_GPIOLIB
  2013-01-24 18:59 [PATCH 1/2] ARM: multi_v7_defconfig: remove unnecessary CONFIG_GPIOLIB Josh Cartwright
  2013-01-24 19:33 ` [PATCH 2/2] ARM: multi_v7_defconfig: add ARCH_ZYNQ Josh Cartwright
@ 2013-01-28 22:04 ` Olof Johansson
  1 sibling, 0 replies; 6+ messages in thread
From: Olof Johansson @ 2013-01-28 22:04 UTC (permalink / raw)
  To: linux-arm-kernel

On Thu, Jan 24, 2013 at 12:59:22PM -0600, Josh Cartwright wrote:
> Commit 38669e045dbf8f62a008898a7fb1e93975b3817c ("ARM: vexpress: Start
> using new Versatile Express infrastructure") introduces a hard
> dependency to GPIOLIB for the multi_v7_defconfig:
> 
>    ARCH_MULTI_V7 -> ARCH_VEXPRESS -> ARCH_REQUIRE_GPIOLIB -> GPIOLIB
> 
> Remove unnecessary explicit CONFIG_GPIOLIB=y from multi_v7_defconfig.
> 
> Signed-off-by: Josh Cartwright <josh.cartwright@ni.com>


Applied, thanks.

-Olof

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

end of thread, other threads:[~2013-01-28 22:04 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2013-01-24 18:59 [PATCH 1/2] ARM: multi_v7_defconfig: remove unnecessary CONFIG_GPIOLIB Josh Cartwright
2013-01-24 19:33 ` [PATCH 2/2] ARM: multi_v7_defconfig: add ARCH_ZYNQ Josh Cartwright
2013-01-24 20:17   ` Josh Cartwright
2013-01-25 15:08     ` Michal Simek
2013-01-28 22:03       ` Olof Johansson
2013-01-28 22:04 ` [PATCH 1/2] ARM: multi_v7_defconfig: remove unnecessary CONFIG_GPIOLIB Olof Johansson

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.