From: Nicolas Ferre <hidden> Date: 2012-03-15 15:58:31
This is a series which deals with AT91 drivers Kconfig entries. Its goal is
to remove too restrictive dependencies on SoC names.
This will allow to add support for newer SoC seamlessly.
One question remains: should I submit those patches through dedicated
sub-maintainer's git trees or can I queue the whole series in arm-soc?
Nicolas Ferre (6):
dmaengine: Kconfig: fix Atmel at_hdmac entry
mmc: Kconfig: remove choice between at91_mci and atmel-mci
mmc: atmel-mci: remove the need for CONFIG_MMC_ATMELMCI_DMA
rtc: Kconfig: remove dependency for AT91 rtc driver
Input: Kconfig: remove dependency for atmel_tsadcc driver
hwrng: Kconfig: remove dependency for atmel-rng driver
drivers/char/hw_random/Kconfig | 2 +-
drivers/dma/Kconfig | 5 ++---
drivers/input/touchscreen/Kconfig | 4 ++--
drivers/mmc/host/Kconfig | 23 ++---------------------
drivers/mmc/host/atmel-mci.c | 2 --
drivers/rtc/Kconfig | 2 +-
6 files changed, 8 insertions(+), 30 deletions(-)
Best regards,
--
1.7.9
From: Nicolas Ferre <hidden> Date: 2012-03-15 15:58:27
This choice is not so important now that atmel-mci supports every
Atmel AT91 SoC except AT91RM9200. As this newer driver is better
maintained choose this one to avoid confusion.
Signed-off-by: Nicolas Ferre <redacted>
---
drivers/mmc/host/Kconfig | 13 ++-----------
1 files changed, 2 insertions(+), 11 deletions(-)
From: Nicolas Ferre <hidden> Date: 2012-03-15 15:58:34
Remove SoC dependency and make it generic for every Atmel ARM AT91. That will
allow to select this driver for newer chips. Keep dependency on AT91 because of
the use of an header file located in include/mach directory.
Modify the comment to reflect this.
Signed-off-by: Nicolas Ferre <redacted>
---
drivers/dma/Kconfig | 5 ++---
1 files changed, 2 insertions(+), 3 deletions(-)
@@ -91,11 +91,10 @@ config DW_DMACconfigAT_HDMACtristate"Atmel AHB DMA support"-depends onARCH_AT91SAM9RL||ARCH_AT91SAM9G45+depends onARCH_AT91selectDMA_ENGINEhelp-SupporttheAtmelAHBDMAcontroller.Thiscanbeintegratedin-chipssuchastheAtmelAT91SAM9RL.+SupporttheAtmelAHBDMAcontroller.configFSL_DMAtristate"Freescale Elo and Elo Plus DMA support"
From: Nicolas Ferre <hidden> Date: 2012-03-15 15:58:44
This will allow to select this driver for newer SoCs.
Keep dependency on AT91 because of the use of an header
file located in include/mach directory.
Signed-off-by: Nicolas Ferre <redacted>
---
drivers/rtc/Kconfig | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
From: Nicolas Ferre <hidden> Date: 2012-03-15 15:58:53
This will allow to select this driver for newer SoCs. Make sure to
keep dependency on HAVE_CLK to avoid breaking other machines.
Signed-off-by: Nicolas Ferre <redacted>
---
drivers/char/hw_random/Kconfig | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
From: Nicolas Ferre <hidden> Date: 2012-03-15 15:58:56
This will allow to select this driver for newer SoCs.
Keep dependency on AT91 because of the use of an header
file located in include/mach directory.
Signed-off-by: Nicolas Ferre <redacted>
---
drivers/input/touchscreen/Kconfig | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
From: Nicolas Ferre <hidden> Date: 2012-03-15 16:06:00
This Kconfig option is not needed anymore, so remove it.
Signed-off-by: Nicolas Ferre <redacted>
---
drivers/mmc/host/Kconfig | 10 ----------
drivers/mmc/host/atmel-mci.c | 2 --
2 files changed, 0 insertions(+), 12 deletions(-)
On Thursday, March 15, 2012 04:57:16 PM Nicolas Ferre wrote:
This is a series which deals with AT91 drivers Kconfig entries. Its goal is
to remove too restrictive dependencies on SoC names.
This will allow to add support for newer SoC seamlessly.
One question remains: should I submit those patches through dedicated
sub-maintainer's git trees or can I queue the whole series in arm-soc?
I'm fine if you queue input piece through arm-soc.
Thanks.
--
Dmitry
From: Herbert Xu <hidden> Date: 2012-03-15 23:54:23
On Thu, Mar 15, 2012 at 04:57:22PM +0100, Nicolas Ferre wrote:
This will allow to select this driver for newer SoCs. Make sure to
keep dependency on HAVE_CLK to avoid breaking other machines.
Signed-off-by: Nicolas Ferre <redacted>
On Thu, 2012-03-15 at 16:57 +0100, Nicolas Ferre wrote:
Remove SoC dependency and make it generic for every Atmel ARM AT91. That will
allow to select this driver for newer chips. Keep dependency on AT91 because of
the use of an header file located in include/mach directory.
Modify the comment to reflect this.
Signed-off-by: Nicolas Ferre <redacted>
@@ -91,11 +91,10 @@ config DW_DMACconfigAT_HDMACtristate"Atmel AHB DMA support"-depends onARCH_AT91SAM9RL||ARCH_AT91SAM9G45+depends onARCH_AT91selectDMA_ENGINEhelp-SupporttheAtmelAHBDMAcontroller.Thiscanbeintegratedin-chipssuchastheAtmelAT91SAM9RL.+SupporttheAtmelAHBDMAcontroller.configFSL_DMAtristate"Freescale Elo and Elo Plus DMA support"
On Thu, Mar 15, 2012 at 04:57:18PM +0100, Nicolas Ferre wrote:
This choice is not so important now that atmel-mci supports every
Atmel AT91 SoC except AT91RM9200. As this newer driver is better
maintained choose this one to avoid confusion.
Signed-off-by: Nicolas Ferre <redacted>
Thanks for this patch, it's a new step to have only one mci driver.
Acked-by: Ludovic Desroches <redacted>
Regards
Ludovic
From: Nicolas Ferre <hidden> Date: 2012-03-21 10:46:30
On 03/15/2012 05:50 PM, Dmitry Torokhov :
On Thursday, March 15, 2012 04:57:16 PM Nicolas Ferre wrote:
quoted
This is a series which deals with AT91 drivers Kconfig entries. Its goal is
to remove too restrictive dependencies on SoC names.
This will allow to add support for newer SoC seamlessly.
One question remains: should I submit those patches through dedicated
sub-maintainer's git trees or can I queue the whole series in arm-soc?
I'm fine if you queue input piece through arm-soc.
Ok, good: I have "Acknowledgement" by several maintainers: so yes, I
will send this series via arm-soc.
Is this means that I can add your "Acked-by"?
Best regards,
--
Nicolas Ferre
On Wednesday, March 21, 2012 11:45:45 AM Nicolas Ferre wrote:
On 03/15/2012 05:50 PM, Dmitry Torokhov :
quoted
On Thursday, March 15, 2012 04:57:16 PM Nicolas Ferre wrote:
quoted
This is a series which deals with AT91 drivers Kconfig entries. Its goal
is
to remove too restrictive dependencies on SoC names.
This will allow to add support for newer SoC seamlessly.
One question remains: should I submit those patches through dedicated
sub-maintainer's git trees or can I queue the whole series in arm-soc?
I'm fine if you queue input piece through arm-soc.
Ok, good: I have "Acknowledgement" by several maintainers: so yes, I
will send this series via arm-soc.
Is this means that I can add your "Acked-by"?