mirror of
https://github.com/openwrt/openwrt.git
synced 2024-12-29 01:59:02 +00:00
7d7aa2fd92
This change makes the names of Broadcom targets consistent by using the common notation based on SoC/CPU ID (which is used internally anyway), bcmXXXX instead of brcmXXXX. This is even used for target TITLE in make menuconfig already, only the short target name used brcm so far. Despite, since subtargets range from bcm2708 to bcm2711, it seems appropriate to use bcm27xx instead of bcm2708 (again, as already done for BOARDNAME). This also renames the packages brcm2708-userland and brcm2708-gpu-fw. Signed-off-by: Adrian Schmutzler <freifunk@adrianschmutzler.de> Acked-by: Álvaro Fernández Rojas <noltari@gmail.com>
29 lines
955 B
Diff
29 lines
955 B
Diff
From 39964e4a3a2ea18b48be5c31d7980895f0bdd99c Mon Sep 17 00:00:00 2001
|
|
From: Eric Anholt <eric@anholt.net>
|
|
Date: Fri, 8 Mar 2019 13:02:16 -0800
|
|
Subject: [PATCH] arm64: bcm2835: Add missing dependency on MFD_CORE.
|
|
|
|
commit 7a9b6be9fe58194d9a349159176e8cc0d8f10ef8 upstream.
|
|
|
|
When adding the MFD dependency for power domains and WDT in bcm2835, I
|
|
added it only on the arm32 side and missed it for arm64.
|
|
|
|
Fixes: 5e6acc3e678e ("bcm2835-pm: Move bcm2835-watchdog's DT probe to an MFD.")
|
|
Signed-off-by: Eric Anholt <eric@anholt.net>
|
|
Reported-by: Stefan Wahren <stefan.wahren@i2se.com>
|
|
Acked-by: Stefan Wahren <stefan.wahren@i2se.com>
|
|
---
|
|
arch/arm64/Kconfig.platforms | 1 +
|
|
1 file changed, 1 insertion(+)
|
|
|
|
--- a/arch/arm64/Kconfig.platforms
|
|
+++ b/arch/arm64/Kconfig.platforms
|
|
@@ -20,6 +20,7 @@ config ARCH_BCM2835
|
|
bool "Broadcom BCM2835 family"
|
|
select TIMER_OF
|
|
select GPIOLIB
|
|
+ select MFD_CORE
|
|
select PINCTRL
|
|
select PINCTRL_BCM2835
|
|
select ARM_AMBA
|