linux-arm-kernel.lists.infradead.org archive mirror
 help / color / mirror / Atom feed
* [PATCH v2] MAINTAINERS: ARM: SiRF: use regex patterns to involve all SiRF drivers
@ 2014-01-03  3:24 Barry Song
  2014-01-03 15:39 ` Uwe Kleine-König
  2014-01-31 23:01 ` Olof Johansson
  0 siblings, 2 replies; 4+ messages in thread
From: Barry Song @ 2014-01-03  3:24 UTC (permalink / raw)
  To: linux-arm-kernel

From: Barry Song <Baohua.Song@csr.com>

instead of listing drivers one by one, use regex patterns to involve all
SiRF drivers directly.
this also adds sirf UART and watchdog drivers automatically from:
drivers/tty/serial/sirfsoc_uart.*
drivers/watchdog/sirfsoc_wdt.c

Cc: Uwe Kleine-K?nig <u.kleine-koenig@pengutronix.de>
Cc: Wim Van Sebroeck <wim@iguana.be>
Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Signed-off-by: Barry Song <Baohua.Song@csr.com>
---
 -v2: use regex patterns according to Uwe's feedback

 MAINTAINERS |    9 +--------
 1 files changed, 1 insertions(+), 8 deletions(-)

diff --git a/MAINTAINERS b/MAINTAINERS
index 21c038f..1b9e6a3 100644
--- a/MAINTAINERS
+++ b/MAINTAINERS
@@ -850,14 +850,7 @@ F:	arch/arm/mach-prima2/
 F:	drivers/clk/clk-prima2.c
 F:	drivers/clocksource/timer-prima2.c
 F:	drivers/clocksource/timer-marco.c
-F:	drivers/dma/sirf-dma.c
-F:	drivers/i2c/busses/i2c-sirf.c
-F:	drivers/input/misc/sirfsoc-onkey.c
-F:	drivers/irqchip/irq-sirfsoc.c
-F:	drivers/mmc/host/sdhci-sirf.c
-F:	drivers/pinctrl/sirf/
-F:	drivers/rtc/rtc-sirfsoc.c
-F:	drivers/spi/spi-sirf.c
+N:	[^a-z]sirf
 
 ARM/EBSA110 MACHINE SUPPORT
 M:	Russell King <linux@arm.linux.org.uk>
-- 
1.7.5.4

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

* [PATCH v2] MAINTAINERS: ARM: SiRF: use regex patterns to involve all SiRF drivers
  2014-01-03  3:24 [PATCH v2] MAINTAINERS: ARM: SiRF: use regex patterns to involve all SiRF drivers Barry Song
@ 2014-01-03 15:39 ` Uwe Kleine-König
  2014-01-06  5:43   ` Barry Song
  2014-01-31 23:01 ` Olof Johansson
  1 sibling, 1 reply; 4+ messages in thread
From: Uwe Kleine-König @ 2014-01-03 15:39 UTC (permalink / raw)
  To: linux-arm-kernel

On Fri, Jan 03, 2014 at 11:24:13AM +0800, Barry Song wrote:
> From: Barry Song <Baohua.Song@csr.com>
> 
> instead of listing drivers one by one, use regex patterns to involve all
> SiRF drivers directly.
> this also adds sirf UART and watchdog drivers automatically from:
> drivers/tty/serial/sirfsoc_uart.*
> drivers/watchdog/sirfsoc_wdt.c
> 
> Cc: Uwe Kleine-K?nig <u.kleine-koenig@pengutronix.de>
> Cc: Wim Van Sebroeck <wim@iguana.be>
> Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
> Signed-off-by: Barry Song <Baohua.Song@csr.com>
> ---
>  -v2: use regex patterns according to Uwe's feedback
> 
>  MAINTAINERS |    9 +--------
>  1 files changed, 1 insertions(+), 8 deletions(-)
> 
> diff --git a/MAINTAINERS b/MAINTAINERS
> index 21c038f..1b9e6a3 100644
> --- a/MAINTAINERS
> +++ b/MAINTAINERS
> @@ -850,14 +850,7 @@ F:	arch/arm/mach-prima2/
>  F:	drivers/clk/clk-prima2.c
>  F:	drivers/clocksource/timer-prima2.c
>  F:	drivers/clocksource/timer-marco.c
> -F:	drivers/dma/sirf-dma.c
> -F:	drivers/i2c/busses/i2c-sirf.c
> -F:	drivers/input/misc/sirfsoc-onkey.c
> -F:	drivers/irqchip/irq-sirfsoc.c
> -F:	drivers/mmc/host/sdhci-sirf.c
> -F:	drivers/pinctrl/sirf/
> -F:	drivers/rtc/rtc-sirfsoc.c
> -F:	drivers/spi/spi-sirf.c
> +N:	[^a-z]sirf
I'm not sure what this [^a-z] is about, but I saw it used for tegra,
too. Does it change the set of used files for you? I dropped it for
efm32 because it doesn't.

Best regards
Uwe

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

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

* [PATCH v2] MAINTAINERS: ARM: SiRF: use regex patterns to involve all SiRF drivers
  2014-01-03 15:39 ` Uwe Kleine-König
@ 2014-01-06  5:43   ` Barry Song
  0 siblings, 0 replies; 4+ messages in thread
From: Barry Song @ 2014-01-06  5:43 UTC (permalink / raw)
  To: linux-arm-kernel

2014/1/3 Uwe Kleine-K?nig <u.kleine-koenig@pengutronix.de>:
> On Fri, Jan 03, 2014 at 11:24:13AM +0800, Barry Song wrote:
>> From: Barry Song <Baohua.Song@csr.com>
>>
>> instead of listing drivers one by one, use regex patterns to involve all
>> SiRF drivers directly.
>> this also adds sirf UART and watchdog drivers automatically from:
>> drivers/tty/serial/sirfsoc_uart.*
>> drivers/watchdog/sirfsoc_wdt.c
>>
>> Cc: Uwe Kleine-K?nig <u.kleine-koenig@pengutronix.de>
>> Cc: Wim Van Sebroeck <wim@iguana.be>
>> Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
>> Signed-off-by: Barry Song <Baohua.Song@csr.com>
>> ---
>>  -v2: use regex patterns according to Uwe's feedback
>>
>>  MAINTAINERS |    9 +--------
>>  1 files changed, 1 insertions(+), 8 deletions(-)
>>
>> diff --git a/MAINTAINERS b/MAINTAINERS
>> index 21c038f..1b9e6a3 100644
>> --- a/MAINTAINERS
>> +++ b/MAINTAINERS
>> @@ -850,14 +850,7 @@ F:       arch/arm/mach-prima2/
>>  F:   drivers/clk/clk-prima2.c
>>  F:   drivers/clocksource/timer-prima2.c
>>  F:   drivers/clocksource/timer-marco.c
>> -F:   drivers/dma/sirf-dma.c
>> -F:   drivers/i2c/busses/i2c-sirf.c
>> -F:   drivers/input/misc/sirfsoc-onkey.c
>> -F:   drivers/irqchip/irq-sirfsoc.c
>> -F:   drivers/mmc/host/sdhci-sirf.c
>> -F:   drivers/pinctrl/sirf/
>> -F:   drivers/rtc/rtc-sirfsoc.c
>> -F:   drivers/spi/spi-sirf.c
>> +N:   [^a-z]sirf
> I'm not sure what this [^a-z] is about, but I saw it used for tegra,
> too. Does it change the set of used files for you? I dropped it for
> efm32 because it doesn't.

no difference for me. i am just following the document:
"
N: Files and directories with regex patterns.
   N:   [^a-z]tegra     all files whose path contains the word tegra
"

>
> Best regards
> Uwe


-barry

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

* [PATCH v2] MAINTAINERS: ARM: SiRF: use regex patterns to involve all SiRF drivers
  2014-01-03  3:24 [PATCH v2] MAINTAINERS: ARM: SiRF: use regex patterns to involve all SiRF drivers Barry Song
  2014-01-03 15:39 ` Uwe Kleine-König
@ 2014-01-31 23:01 ` Olof Johansson
  1 sibling, 0 replies; 4+ messages in thread
From: Olof Johansson @ 2014-01-31 23:01 UTC (permalink / raw)
  To: linux-arm-kernel

On Fri, Jan 03, 2014 at 11:24:13AM +0800, Barry Song wrote:
> From: Barry Song <Baohua.Song@csr.com>
> 
> instead of listing drivers one by one, use regex patterns to involve all
> SiRF drivers directly.
> this also adds sirf UART and watchdog drivers automatically from:
> drivers/tty/serial/sirfsoc_uart.*
> drivers/watchdog/sirfsoc_wdt.c
> 
> Cc: Uwe Kleine-K?nig <u.kleine-koenig@pengutronix.de>
> Cc: Wim Van Sebroeck <wim@iguana.be>
> Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
> Signed-off-by: Barry Song <Baohua.Song@csr.com>

Applied to fixes for 3.14.


-Olof

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

end of thread, other threads:[~2014-01-31 23:01 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2014-01-03  3:24 [PATCH v2] MAINTAINERS: ARM: SiRF: use regex patterns to involve all SiRF drivers Barry Song
2014-01-03 15:39 ` Uwe Kleine-König
2014-01-06  5:43   ` Barry Song
2014-01-31 23:01 ` 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).