diff options
Diffstat (limited to 'arch/arm/mach-at91')
| -rw-r--r-- | arch/arm/mach-at91/Kconfig | 1 | ||||
| -rw-r--r-- | arch/arm/mach-at91/Makefile.boot | 1 | ||||
| -rw-r--r-- | arch/arm/mach-at91/at91rm9200.c | 3 | ||||
| -rw-r--r-- | arch/arm/mach-at91/at91sam9.c | 3 | ||||
| -rw-r--r-- | arch/arm/mach-at91/sama5.c | 3 | ||||
| -rw-r--r-- | arch/arm/mach-at91/samv7.c | 3 |
6 files changed, 6 insertions, 8 deletions
diff --git a/arch/arm/mach-at91/Kconfig b/arch/arm/mach-at91/Kconfig index a2220e522f62..af41725fcc72 100644 --- a/arch/arm/mach-at91/Kconfig +++ b/arch/arm/mach-at91/Kconfig | |||
| @@ -1,3 +1,4 @@ | |||
| 1 | # SPDX-License-Identifier: GPL-2.0-only | ||
| 1 | menuconfig ARCH_AT91 | 2 | menuconfig ARCH_AT91 |
| 2 | bool "AT91/Microchip SoCs" | 3 | bool "AT91/Microchip SoCs" |
| 3 | depends on ARCH_MULTI_V4T || ARCH_MULTI_V5 || ARCH_MULTI_V7 || ARM_SINGLE_ARMV7M | 4 | depends on ARCH_MULTI_V4T || ARCH_MULTI_V5 || ARCH_MULTI_V7 || ARM_SINGLE_ARMV7M |
diff --git a/arch/arm/mach-at91/Makefile.boot b/arch/arm/mach-at91/Makefile.boot index eacfc3f5c33e..cec195d4fcba 100644 --- a/arch/arm/mach-at91/Makefile.boot +++ b/arch/arm/mach-at91/Makefile.boot | |||
| @@ -1,3 +1,4 @@ | |||
| 1 | # SPDX-License-Identifier: GPL-2.0-only | ||
| 1 | # Empty file waiting for deletion once Makefile.boot isn't needed any more. | 2 | # Empty file waiting for deletion once Makefile.boot isn't needed any more. |
| 2 | # Patch waits for application at | 3 | # Patch waits for application at |
| 3 | # http://www.arm.linux.org.uk/developer/patches/viewpatch.php?id=7889/1 . | 4 | # http://www.arm.linux.org.uk/developer/patches/viewpatch.php?id=7889/1 . |
diff --git a/arch/arm/mach-at91/at91rm9200.c b/arch/arm/mach-at91/at91rm9200.c index 656ad409a253..4f8186211619 100644 --- a/arch/arm/mach-at91/at91rm9200.c +++ b/arch/arm/mach-at91/at91rm9200.c | |||
| @@ -1,11 +1,10 @@ | |||
| 1 | // SPDX-License-Identifier: GPL-2.0-or-later | ||
| 1 | /* | 2 | /* |
| 2 | * Setup code for AT91RM9200 | 3 | * Setup code for AT91RM9200 |
| 3 | * | 4 | * |
| 4 | * Copyright (C) 2011 Atmel, | 5 | * Copyright (C) 2011 Atmel, |
| 5 | * 2011 Nicolas Ferre <nicolas.ferre@atmel.com> | 6 | * 2011 Nicolas Ferre <nicolas.ferre@atmel.com> |
| 6 | * 2012 Joachim Eastwood <manabian@gmail.com> | 7 | * 2012 Joachim Eastwood <manabian@gmail.com> |
| 7 | * | ||
| 8 | * Licensed under GPLv2 or later. | ||
| 9 | */ | 8 | */ |
| 10 | 9 | ||
| 11 | #include <linux/of.h> | 10 | #include <linux/of.h> |
diff --git a/arch/arm/mach-at91/at91sam9.c b/arch/arm/mach-at91/at91sam9.c index c12563b09656..bf629c90c758 100644 --- a/arch/arm/mach-at91/at91sam9.c +++ b/arch/arm/mach-at91/at91sam9.c | |||
| @@ -1,10 +1,9 @@ | |||
| 1 | // SPDX-License-Identifier: GPL-2.0-or-later | ||
| 1 | /* | 2 | /* |
| 2 | * Setup code for AT91SAM9 | 3 | * Setup code for AT91SAM9 |
| 3 | * | 4 | * |
| 4 | * Copyright (C) 2011 Atmel, | 5 | * Copyright (C) 2011 Atmel, |
| 5 | * 2011 Nicolas Ferre <nicolas.ferre@atmel.com> | 6 | * 2011 Nicolas Ferre <nicolas.ferre@atmel.com> |
| 6 | * | ||
| 7 | * Licensed under GPLv2 or later. | ||
| 8 | */ | 7 | */ |
| 9 | 8 | ||
| 10 | #include <linux/of.h> | 9 | #include <linux/of.h> |
diff --git a/arch/arm/mach-at91/sama5.c b/arch/arm/mach-at91/sama5.c index 3d0bf95a56ae..89dab7cf01e8 100644 --- a/arch/arm/mach-at91/sama5.c +++ b/arch/arm/mach-at91/sama5.c | |||
| @@ -1,10 +1,9 @@ | |||
| 1 | // SPDX-License-Identifier: GPL-2.0-or-later | ||
| 1 | /* | 2 | /* |
| 2 | * Setup code for SAMA5 | 3 | * Setup code for SAMA5 |
| 3 | * | 4 | * |
| 4 | * Copyright (C) 2013 Atmel, | 5 | * Copyright (C) 2013 Atmel, |
| 5 | * 2013 Ludovic Desroches <ludovic.desroches@atmel.com> | 6 | * 2013 Ludovic Desroches <ludovic.desroches@atmel.com> |
| 6 | * | ||
| 7 | * Licensed under GPLv2 or later. | ||
| 8 | */ | 7 | */ |
| 9 | 8 | ||
| 10 | #include <linux/of.h> | 9 | #include <linux/of.h> |
diff --git a/arch/arm/mach-at91/samv7.c b/arch/arm/mach-at91/samv7.c index 11386f190c83..28f998f0fba5 100644 --- a/arch/arm/mach-at91/samv7.c +++ b/arch/arm/mach-at91/samv7.c | |||
| @@ -1,10 +1,9 @@ | |||
| 1 | // SPDX-License-Identifier: GPL-2.0-or-later | ||
| 1 | /* | 2 | /* |
| 2 | * Setup code for SAMv7x | 3 | * Setup code for SAMv7x |
| 3 | * | 4 | * |
| 4 | * Copyright (C) 2013 Atmel, | 5 | * Copyright (C) 2013 Atmel, |
| 5 | * 2016 Andras Szemzo <szemzo.andras@gmail.com> | 6 | * 2016 Andras Szemzo <szemzo.andras@gmail.com> |
| 6 | * | ||
| 7 | * Licensed under GPLv2 or later. | ||
| 8 | */ | 7 | */ |
| 9 | #include <linux/of.h> | 8 | #include <linux/of.h> |
| 10 | #include <linux/of_platform.h> | 9 | #include <linux/of_platform.h> |
