All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 0/3] MAINTAINERS: ARM & SD fixes
@ 2019-10-12  6:54 Philippe Mathieu-Daudé
  2019-10-12  6:54 ` [PATCH 1/3] MAINTAINERS: Add hw/sd/ssi-sd.c in the SD section Philippe Mathieu-Daudé
                   ` (2 more replies)
  0 siblings, 3 replies; 7+ messages in thread
From: Philippe Mathieu-Daudé @ 2019-10-12  6:54 UTC (permalink / raw)
  To: qemu-devel
  Cc: Esteban Bosse, Philippe Mathieu-Daudé,
	qemu-arm, Vladimir Sementsov-Ogievskiy, Peter Maydell

Few fixes after looking at Vladimir's commit-per-subsystem.py script:
https://www.mail-archive.com/qemu-devel@nongnu.org/msg651545.html

Philippe Mathieu-Daudé (3):
  MAINTAINERS: Add hw/sd/ssi-sd.c in the SD section
  MAINTAINERS: Cc the qemu-arm@nongnu.org for the ARM machines
  MAINTAINERS: Move the OMAP section inside the ARM Machines one

 MAINTAINERS | 18 ++++++++++++------
 1 file changed, 12 insertions(+), 6 deletions(-)

-- 
2.21.0



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

* [PATCH 1/3] MAINTAINERS: Add hw/sd/ssi-sd.c in the SD section
  2019-10-12  6:54 [PATCH 0/3] MAINTAINERS: ARM & SD fixes Philippe Mathieu-Daudé
@ 2019-10-12  6:54 ` Philippe Mathieu-Daudé
  2019-11-18 12:26   ` Philippe Mathieu-Daudé
  2019-10-12  6:54 ` [PATCH 2/3] MAINTAINERS: Cc the qemu-arm@nongnu.org for the ARM machines Philippe Mathieu-Daudé
  2019-10-12  6:54 ` [PATCH 3/3] MAINTAINERS: Move the OMAP section inside the ARM Machines one Philippe Mathieu-Daudé
  2 siblings, 1 reply; 7+ messages in thread
From: Philippe Mathieu-Daudé @ 2019-10-12  6:54 UTC (permalink / raw)
  To: qemu-devel
  Cc: Esteban Bosse, Philippe Mathieu-Daudé,
	qemu-arm, Vladimir Sementsov-Ogievskiy, Peter Maydell

The hw/sd/ssi-sd.c file is orphean, add it to the SD section.

Signed-off-by: Philippe Mathieu-Daudé <philmd@redhat.com>
---
 MAINTAINERS | 1 +
 1 file changed, 1 insertion(+)

diff --git a/MAINTAINERS b/MAINTAINERS
index 3ca814850e..47eae9fc46 100644
--- a/MAINTAINERS
+++ b/MAINTAINERS
@@ -1445,6 +1445,7 @@ S: Odd Fixes
 F: include/hw/sd/sd*
 F: hw/sd/core.c
 F: hw/sd/sd*
+F: hw/sd/ssi-sd.c
 F: tests/sd*
 
 USB
-- 
2.21.0



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

* [PATCH 2/3] MAINTAINERS: Cc the qemu-arm@nongnu.org for the ARM machines
  2019-10-12  6:54 [PATCH 0/3] MAINTAINERS: ARM & SD fixes Philippe Mathieu-Daudé
  2019-10-12  6:54 ` [PATCH 1/3] MAINTAINERS: Add hw/sd/ssi-sd.c in the SD section Philippe Mathieu-Daudé
@ 2019-10-12  6:54 ` Philippe Mathieu-Daudé
  2019-10-12 16:34   ` Alistair Francis
  2019-10-12  6:54 ` [PATCH 3/3] MAINTAINERS: Move the OMAP section inside the ARM Machines one Philippe Mathieu-Daudé
  2 siblings, 1 reply; 7+ messages in thread
From: Philippe Mathieu-Daudé @ 2019-10-12  6:54 UTC (permalink / raw)
  To: qemu-devel
  Cc: Esteban Bosse, Philippe Mathieu-Daudé,
	qemu-arm, Vladimir Sementsov-Ogievskiy, Peter Maydell

Not all ARM machines sections Cc the qemu-arm@nongnu.org list,
fix this.

Signed-off-by: Philippe Mathieu-Daudé <philmd@redhat.com>
---
 MAINTAINERS | 5 +++++
 1 file changed, 5 insertions(+)

diff --git a/MAINTAINERS b/MAINTAINERS
index 47eae9fc46..65fbc6d7b4 100644
--- a/MAINTAINERS
+++ b/MAINTAINERS
@@ -805,6 +805,7 @@ F: hw/arm/virt-acpi-build.c
 STM32F205
 M: Alistair Francis <alistair@alistair23.me>
 M: Peter Maydell <peter.maydell@linaro.org>
+L: qemu-arm@nongnu.org
 S: Maintained
 F: hw/arm/stm32f205_soc.c
 F: hw/misc/stm32f2xx_syscfg.c
@@ -817,12 +818,14 @@ F: include/hw/*/stm32*.h
 Netduino 2
 M: Alistair Francis <alistair@alistair23.me>
 M: Peter Maydell <peter.maydell@linaro.org>
+L: qemu-arm@nongnu.org
 S: Maintained
 F: hw/arm/netduino2.c
 
 SmartFusion2
 M: Subbaraya Sundeep <sundeep.lkml@gmail.com>
 M: Peter Maydell <peter.maydell@linaro.org>
+L: qemu-arm@nongnu.org
 S: Maintained
 F: hw/arm/msf2-soc.c
 F: hw/misc/msf2-sysreg.c
@@ -836,6 +839,7 @@ F: include/hw/ssi/mss-spi.h
 Emcraft M2S-FG484
 M: Subbaraya Sundeep <sundeep.lkml@gmail.com>
 M: Peter Maydell <peter.maydell@linaro.org>
+L: qemu-arm@nongnu.org
 S: Maintained
 F: hw/arm/msf2-som.c
 
@@ -1349,6 +1353,7 @@ T: git https://github.com/jnsnow/qemu.git ide
 
 OMAP
 M: Peter Maydell <peter.maydell@linaro.org>
+L: qemu-arm@nongnu.org
 S: Maintained
 F: hw/*/omap*
 F: include/hw/arm/omap.h
-- 
2.21.0



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

* [PATCH 3/3] MAINTAINERS: Move the OMAP section inside the ARM Machines one
  2019-10-12  6:54 [PATCH 0/3] MAINTAINERS: ARM & SD fixes Philippe Mathieu-Daudé
  2019-10-12  6:54 ` [PATCH 1/3] MAINTAINERS: Add hw/sd/ssi-sd.c in the SD section Philippe Mathieu-Daudé
  2019-10-12  6:54 ` [PATCH 2/3] MAINTAINERS: Cc the qemu-arm@nongnu.org for the ARM machines Philippe Mathieu-Daudé
@ 2019-10-12  6:54 ` Philippe Mathieu-Daudé
  2 siblings, 0 replies; 7+ messages in thread
From: Philippe Mathieu-Daudé @ 2019-10-12  6:54 UTC (permalink / raw)
  To: qemu-devel
  Cc: Esteban Bosse, Philippe Mathieu-Daudé,
	qemu-arm, Vladimir Sementsov-Ogievskiy, Peter Maydell

Add the Siemens SX1 (OMAP310) machines with the other ARM machines.

Signed-off-by: Philippe Mathieu-Daudé <philmd@redhat.com>
---
 MAINTAINERS | 14 +++++++-------
 1 file changed, 7 insertions(+), 7 deletions(-)

diff --git a/MAINTAINERS b/MAINTAINERS
index 65fbc6d7b4..87afc1126a 100644
--- a/MAINTAINERS
+++ b/MAINTAINERS
@@ -558,6 +558,13 @@ F: include/hw/arm/digic.h
 F: hw/*/digic*
 F: include/hw/*/digic*
 
+OMAP
+M: Peter Maydell <peter.maydell@linaro.org>
+L: qemu-arm@nongnu.org
+S: Maintained
+F: hw/*/omap*
+F: include/hw/arm/omap.h
+
 Gumstix
 M: Peter Maydell <peter.maydell@linaro.org>
 R: Philippe Mathieu-Daudé <f4bug@amsat.org>
@@ -1351,13 +1358,6 @@ F: include/hw/block/fdc.h
 F: tests/fdc-test.c
 T: git https://github.com/jnsnow/qemu.git ide
 
-OMAP
-M: Peter Maydell <peter.maydell@linaro.org>
-L: qemu-arm@nongnu.org
-S: Maintained
-F: hw/*/omap*
-F: include/hw/arm/omap.h
-
 IPack
 M: Alberto Garcia <berto@igalia.com>
 S: Odd Fixes
-- 
2.21.0



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

* Re: [PATCH 2/3] MAINTAINERS: Cc the qemu-arm@nongnu.org for the ARM machines
  2019-10-12  6:54 ` [PATCH 2/3] MAINTAINERS: Cc the qemu-arm@nongnu.org for the ARM machines Philippe Mathieu-Daudé
@ 2019-10-12 16:34   ` Alistair Francis
  0 siblings, 0 replies; 7+ messages in thread
From: Alistair Francis @ 2019-10-12 16:34 UTC (permalink / raw)
  To: Philippe Mathieu-Daudé
  Cc: Esteban Bosse, qemu-arm, Vladimir Sementsov-Ogievskiy,
	qemu-devel@nongnu.org Developers, Peter Maydell

On Fri, Oct 11, 2019 at 11:56 PM Philippe Mathieu-Daudé
<philmd@redhat.com> wrote:
>
> Not all ARM machines sections Cc the qemu-arm@nongnu.org list,
> fix this.
>
> Signed-off-by: Philippe Mathieu-Daudé <philmd@redhat.com>

Reviewed-by: Alistair Francis <alistair.francis@wdc.com>

Alistair

> ---
>  MAINTAINERS | 5 +++++
>  1 file changed, 5 insertions(+)
>
> diff --git a/MAINTAINERS b/MAINTAINERS
> index 47eae9fc46..65fbc6d7b4 100644
> --- a/MAINTAINERS
> +++ b/MAINTAINERS
> @@ -805,6 +805,7 @@ F: hw/arm/virt-acpi-build.c
>  STM32F205
>  M: Alistair Francis <alistair@alistair23.me>
>  M: Peter Maydell <peter.maydell@linaro.org>
> +L: qemu-arm@nongnu.org
>  S: Maintained
>  F: hw/arm/stm32f205_soc.c
>  F: hw/misc/stm32f2xx_syscfg.c
> @@ -817,12 +818,14 @@ F: include/hw/*/stm32*.h
>  Netduino 2
>  M: Alistair Francis <alistair@alistair23.me>
>  M: Peter Maydell <peter.maydell@linaro.org>
> +L: qemu-arm@nongnu.org
>  S: Maintained
>  F: hw/arm/netduino2.c
>
>  SmartFusion2
>  M: Subbaraya Sundeep <sundeep.lkml@gmail.com>
>  M: Peter Maydell <peter.maydell@linaro.org>
> +L: qemu-arm@nongnu.org
>  S: Maintained
>  F: hw/arm/msf2-soc.c
>  F: hw/misc/msf2-sysreg.c
> @@ -836,6 +839,7 @@ F: include/hw/ssi/mss-spi.h
>  Emcraft M2S-FG484
>  M: Subbaraya Sundeep <sundeep.lkml@gmail.com>
>  M: Peter Maydell <peter.maydell@linaro.org>
> +L: qemu-arm@nongnu.org
>  S: Maintained
>  F: hw/arm/msf2-som.c
>
> @@ -1349,6 +1353,7 @@ T: git https://github.com/jnsnow/qemu.git ide
>
>  OMAP
>  M: Peter Maydell <peter.maydell@linaro.org>
> +L: qemu-arm@nongnu.org
>  S: Maintained
>  F: hw/*/omap*
>  F: include/hw/arm/omap.h
> --
> 2.21.0
>
>


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

* Re: [PATCH 1/3] MAINTAINERS: Add hw/sd/ssi-sd.c in the SD section
  2019-10-12  6:54 ` [PATCH 1/3] MAINTAINERS: Add hw/sd/ssi-sd.c in the SD section Philippe Mathieu-Daudé
@ 2019-11-18 12:26   ` Philippe Mathieu-Daudé
  2019-12-18 11:18     ` Laurent Vivier
  0 siblings, 1 reply; 7+ messages in thread
From: Philippe Mathieu-Daudé @ 2019-11-18 12:26 UTC (permalink / raw)
  To: qemu-devel
  Cc: QEMU Trivial, Esteban Bosse, qemu-arm,
	Vladimir Sementsov-Ogievskiy, Peter Maydell

Cc'ing qemu-trivial@

On 10/12/19 8:54 AM, Philippe Mathieu-Daudé wrote:
> The hw/sd/ssi-sd.c file is orphean, add it to the SD section.
> 
> Signed-off-by: Philippe Mathieu-Daudé <philmd@redhat.com>
> ---
>   MAINTAINERS | 1 +
>   1 file changed, 1 insertion(+)
> 
> diff --git a/MAINTAINERS b/MAINTAINERS
> index 3ca814850e..47eae9fc46 100644
> --- a/MAINTAINERS
> +++ b/MAINTAINERS
> @@ -1445,6 +1445,7 @@ S: Odd Fixes
>   F: include/hw/sd/sd*
>   F: hw/sd/core.c
>   F: hw/sd/sd*
> +F: hw/sd/ssi-sd.c
>   F: tests/sd*
>   
>   USB
> 



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

* Re: [PATCH 1/3] MAINTAINERS: Add hw/sd/ssi-sd.c in the SD section
  2019-11-18 12:26   ` Philippe Mathieu-Daudé
@ 2019-12-18 11:18     ` Laurent Vivier
  0 siblings, 0 replies; 7+ messages in thread
From: Laurent Vivier @ 2019-12-18 11:18 UTC (permalink / raw)
  To: Philippe Mathieu-Daudé, qemu-devel
  Cc: QEMU Trivial, Esteban Bosse, qemu-arm,
	Vladimir Sementsov-Ogievskiy, Peter Maydell

Le 18/11/2019 à 13:26, Philippe Mathieu-Daudé a écrit :
> Cc'ing qemu-trivial@
> 
> On 10/12/19 8:54 AM, Philippe Mathieu-Daudé wrote:
>> The hw/sd/ssi-sd.c file is orphean, add it to the SD section.
>>
>> Signed-off-by: Philippe Mathieu-Daudé <philmd@redhat.com>
>> ---
>>   MAINTAINERS | 1 +
>>   1 file changed, 1 insertion(+)
>>
>> diff --git a/MAINTAINERS b/MAINTAINERS
>> index 3ca814850e..47eae9fc46 100644
>> --- a/MAINTAINERS
>> +++ b/MAINTAINERS
>> @@ -1445,6 +1445,7 @@ S: Odd Fixes
>>   F: include/hw/sd/sd*
>>   F: hw/sd/core.c
>>   F: hw/sd/sd*
>> +F: hw/sd/ssi-sd.c
>>   F: tests/sd*
>>     USB
>>
> 
> 

Applied to my trivial-patches branch.

Thanks,
Laurent


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

end of thread, other threads:[~2019-12-18 11:19 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-10-12  6:54 [PATCH 0/3] MAINTAINERS: ARM & SD fixes Philippe Mathieu-Daudé
2019-10-12  6:54 ` [PATCH 1/3] MAINTAINERS: Add hw/sd/ssi-sd.c in the SD section Philippe Mathieu-Daudé
2019-11-18 12:26   ` Philippe Mathieu-Daudé
2019-12-18 11:18     ` Laurent Vivier
2019-10-12  6:54 ` [PATCH 2/3] MAINTAINERS: Cc the qemu-arm@nongnu.org for the ARM machines Philippe Mathieu-Daudé
2019-10-12 16:34   ` Alistair Francis
2019-10-12  6:54 ` [PATCH 3/3] MAINTAINERS: Move the OMAP section inside the ARM Machines one Philippe Mathieu-Daudé

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.