Skip to content

Commit c9c7ddd

Browse files
committed
Merge tag 'versatile-soc-v5.10-1' of git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-integrator into arm/soc
Versatile SoC updates for the v5.10 kernel cycle: - Drop a static qualifier in integrator_soc_init() - Remove Integrator and Versatile from PHYS_OFFSET * tag 'versatile-soc-v5.10-1' of git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-integrator: ARM: versatile: Remove Integrator and Realview from PHYS_OFFSET soc: integrator: Drop pointless static qualifier in integrator_soc_init() Link: https://lore.kernel.org/r/CACRpkdYYDSg8FAjJAqew5yEu7H1Y3E1rPN9TL25K31T=QWATuA@mail.gmail.com Signed-off-by: Olof Johansson <olof@lixom.net>
2 parents 465c335 + 5d007a0 commit c9c7ddd

2 files changed

Lines changed: 2 additions & 4 deletions

File tree

arch/arm/Kconfig

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -265,9 +265,7 @@ config PHYS_OFFSET
265265
depends on !ARM_PATCH_PHYS_VIRT
266266
default DRAM_BASE if !MMU
267267
default 0x00000000 if ARCH_EBSA110 || \
268-
ARCH_FOOTBRIDGE || \
269-
ARCH_INTEGRATOR || \
270-
ARCH_REALVIEW
268+
ARCH_FOOTBRIDGE
271269
default 0x10000000 if ARCH_OMAP1 || ARCH_RPC
272270
default 0x20000000 if ARCH_S5PV210
273271
default 0xc0000000 if ARCH_SA1100

drivers/soc/versatile/soc-integrator.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ ATTRIBUTE_GROUPS(integrator);
100100

101101
static int __init integrator_soc_init(void)
102102
{
103-
static struct regmap *syscon_regmap;
103+
struct regmap *syscon_regmap;
104104
struct soc_device *soc_dev;
105105
struct soc_device_attribute *soc_dev_attr;
106106
struct device_node *np;

0 commit comments

Comments
 (0)