diff options
| author | Arnd Bergmann <[email protected]> | 2019-09-03 14:23:43 +0200 |
|---|---|---|
| committer | Arnd Bergmann <[email protected]> | 2019-09-03 14:23:44 +0200 |
| commit | 7bbf8693103589936570e241db4ebf7beee55568 (patch) | |
| tree | 44f538cb3ad327a79341df812a47e6a49a196eae | |
| parent | e6dde5cc391c73c8915f72c83e50c3973f6afe27 (diff) | |
| parent | 2cb831e0f152e483ab797b44787a4ff426267fbc (diff) | |
Merge tag 'at91-5.4-soc' of git://git.kernel.org/pub/scm/linux/kernel/git/at91/linux into arm/soc
AT91 SoC for 5.4
- MAINTAINERS updates
- a generated headers parallel build fix
* tag 'at91-5.4-soc' of git://git.kernel.org/pub/scm/linux/kernel/git/at91/linux:
mailmap: map old company name to new one @microchip.com
MAINTAINERS: at91: remove the TC entry
MAINTAINERS: at91: Collect all pinctrl/gpio drivers in same entry
ARM: at91: move platform-specific asm-offset.h to arch/arm/mach-at91
Link: https://lore.kernel.org/r/[email protected]
Signed-off-by: Arnd Bergmann <[email protected]>
| -rw-r--r-- | .mailmap | 1 | ||||
| -rw-r--r-- | MAINTAINERS | 14 | ||||
| -rw-r--r-- | arch/arm/mach-at91/.gitignore | 1 | ||||
| -rw-r--r-- | arch/arm/mach-at91/Makefile | 5 | ||||
| -rw-r--r-- | arch/arm/mach-at91/pm_suspend.S | 2 |
5 files changed, 7 insertions, 16 deletions
@@ -173,6 +173,7 @@ Morten Welinder <[email protected]> Morten Welinder <[email protected]> Mythri P K <[email protected]> Nguyen Anh Quynh <[email protected]> +Nicolas Ferre <[email protected]> <[email protected]> Nicolas Pitre <[email protected]> <[email protected]> Nicolas Pitre <[email protected]> <[email protected]> Paolo 'Blaisorblade' Giarrusso <[email protected]> diff --git a/MAINTAINERS b/MAINTAINERS index d37b752898a5..b226bac89325 100644 --- a/MAINTAINERS +++ b/MAINTAINERS @@ -10584,12 +10584,6 @@ M: Nicolas Ferre <[email protected]> S: Supported F: drivers/power/reset/at91-sama5d2_shdwc.c -MICROCHIP SAMA5D2-COMPATIBLE PIOBU GPIO -M: Andrei Stefanescu <[email protected]> -L: [email protected] (moderated for non-subscribers) -F: drivers/gpio/gpio-sama5d2-piobu.c - MICROCHIP SPI DRIVER M: Nicolas Ferre <[email protected]> S: Supported @@ -10602,13 +10596,6 @@ S: Supported F: drivers/misc/atmel-ssc.c F: include/linux/atmel-ssc.h -MICROCHIP TIMER COUNTER (TC) AND CLOCKSOURCE DRIVERS -M: Nicolas Ferre <[email protected]> -L: [email protected] (moderated for non-subscribers) -S: Supported -F: drivers/misc/atmel_tclib.c -F: drivers/clocksource/tcb_clksrc.c - MICROCHIP USBA UDC DRIVER M: Cristian Birsan <[email protected]> L: [email protected] (moderated for non-subscribers) @@ -12650,6 +12637,7 @@ L: [email protected] (moderated for non-subscribers) S: Supported F: drivers/pinctrl/pinctrl-at91* +F: drivers/gpio/gpio-sama5d2-piobu.c PIN CONTROLLER - FREESCALE M: Dong Aisheng <[email protected]> diff --git a/arch/arm/mach-at91/.gitignore b/arch/arm/mach-at91/.gitignore new file mode 100644 index 000000000000..2ecd6f51c8a9 --- /dev/null +++ b/arch/arm/mach-at91/.gitignore @@ -0,0 +1 @@ +pm_data-offsets.h diff --git a/arch/arm/mach-at91/Makefile b/arch/arm/mach-at91/Makefile index 31b61f0e1c07..de64301dcff2 100644 --- a/arch/arm/mach-at91/Makefile +++ b/arch/arm/mach-at91/Makefile @@ -19,9 +19,10 @@ ifeq ($(CONFIG_PM_DEBUG),y) CFLAGS_pm.o += -DDEBUG endif -include/generated/at91_pm_data-offsets.h: arch/arm/mach-at91/pm_data-offsets.s FORCE +$(obj)/pm_data-offsets.h: $(obj)/pm_data-offsets.s FORCE $(call filechk,offsets,__PM_DATA_OFFSETS_H__) -arch/arm/mach-at91/pm_suspend.o: include/generated/at91_pm_data-offsets.h +$(obj)/pm_suspend.o: $(obj)/pm_data-offsets.h targets += pm_data-offsets.s +clean-files += pm_data-offsets.h diff --git a/arch/arm/mach-at91/pm_suspend.S b/arch/arm/mach-at91/pm_suspend.S index c751f047b116..ed57c879d4e1 100644 --- a/arch/arm/mach-at91/pm_suspend.S +++ b/arch/arm/mach-at91/pm_suspend.S @@ -10,7 +10,7 @@ #include <linux/linkage.h> #include <linux/clk/at91_pmc.h> #include "pm.h" -#include "generated/at91_pm_data-offsets.h" +#include "pm_data-offsets.h" #define SRAMC_SELF_FRESH_ACTIVE 0x01 #define SRAMC_SELF_FRESH_EXIT 0x00 |