diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2016-05-13 12:52:00 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2016-05-13 12:52:00 -0400 |
commit | 18759462b6dd8de0f668a346cfe3776fe9370bac (patch) | |
tree | 6811c0ccde5acc823b660ae29b4812776eca6a8a | |
parent | c3548b730dceecf6197d629a425c99801dadfa5e (diff) | |
parent | 8a934ccbf90959877beec27780469e85f1c3f101 (diff) |
Merge tag 'fixes-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/arm/arm-soc
Pull ARM SoC fixes from Arnd Bergmann:
"Three more bug fixes for ARM SoCs this week:
- The Atmel sama5d2 was registering the wrong NFC device type
- On Atmel sam9x5, the power management controller had an incorrect
register area size
- On ARM64 Allwinner machine was not secting the generic irqchip
code, causing build errors in some configurations"
* tag 'fixes-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/arm/arm-soc:
ARM: dts: at91: sam9x5: Fix the memory range assigned to the PMC
arm64/sunxi: 4.6-rc1: Add dependency on generic irq chip
ARM: dts: at91: sama5d2: use "atmel,sama5d3-nfc" compatible for nfc
-rw-r--r-- | arch/arm/boot/dts/at91sam9x5.dtsi | 2 | ||||
-rw-r--r-- | arch/arm/boot/dts/sama5d2.dtsi | 2 | ||||
-rw-r--r-- | arch/arm64/Kconfig.platforms | 1 |
3 files changed, 3 insertions, 2 deletions
diff --git a/arch/arm/boot/dts/at91sam9x5.dtsi b/arch/arm/boot/dts/at91sam9x5.dtsi index 0827d594b1f0..cd0cd5fd09a3 100644 --- a/arch/arm/boot/dts/at91sam9x5.dtsi +++ b/arch/arm/boot/dts/at91sam9x5.dtsi | |||
@@ -106,7 +106,7 @@ | |||
106 | 106 | ||
107 | pmc: pmc@fffffc00 { | 107 | pmc: pmc@fffffc00 { |
108 | compatible = "atmel,at91sam9x5-pmc", "syscon"; | 108 | compatible = "atmel,at91sam9x5-pmc", "syscon"; |
109 | reg = <0xfffffc00 0x100>; | 109 | reg = <0xfffffc00 0x200>; |
110 | interrupts = <1 IRQ_TYPE_LEVEL_HIGH 7>; | 110 | interrupts = <1 IRQ_TYPE_LEVEL_HIGH 7>; |
111 | interrupt-controller; | 111 | interrupt-controller; |
112 | #address-cells = <1>; | 112 | #address-cells = <1>; |
diff --git a/arch/arm/boot/dts/sama5d2.dtsi b/arch/arm/boot/dts/sama5d2.dtsi index 78996bdbd3df..9817090c1b73 100644 --- a/arch/arm/boot/dts/sama5d2.dtsi +++ b/arch/arm/boot/dts/sama5d2.dtsi | |||
@@ -280,7 +280,7 @@ | |||
280 | status = "disabled"; | 280 | status = "disabled"; |
281 | 281 | ||
282 | nfc@c0000000 { | 282 | nfc@c0000000 { |
283 | compatible = "atmel,sama5d4-nfc"; | 283 | compatible = "atmel,sama5d3-nfc"; |
284 | #address-cells = <1>; | 284 | #address-cells = <1>; |
285 | #size-cells = <1>; | 285 | #size-cells = <1>; |
286 | reg = < /* NFC Command Registers */ | 286 | reg = < /* NFC Command Registers */ |
diff --git a/arch/arm64/Kconfig.platforms b/arch/arm64/Kconfig.platforms index efa77c146415..521b1ec59157 100644 --- a/arch/arm64/Kconfig.platforms +++ b/arch/arm64/Kconfig.platforms | |||
@@ -2,6 +2,7 @@ menu "Platform selection" | |||
2 | 2 | ||
3 | config ARCH_SUNXI | 3 | config ARCH_SUNXI |
4 | bool "Allwinner sunxi 64-bit SoC Family" | 4 | bool "Allwinner sunxi 64-bit SoC Family" |
5 | select GENERIC_IRQ_CHIP | ||
5 | help | 6 | help |
6 | This enables support for Allwinner sunxi based SoCs like the A64. | 7 | This enables support for Allwinner sunxi based SoCs like the A64. |
7 | 8 | ||