Skip to content

Commit f3c15b0

Browse files
committed
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: "These are two fixes that came in this week, one for a regression we introduced in 3.10 in the GIC interrupt code, and the other one fixes a typo in newly introduced code" * tag 'fixes-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/arm/arm-soc: irqchip: gic: call gic_cpu_init() as well in CPU_STARTING_FROZEN case ARM: dts: Correct the base address of pinctrl_3 on Exynos5250
2 parents e10e577 + 8b6fd65 commit f3c15b0

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

arch/arm/boot/dts/exynos5250-pinctrl.dtsi

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -763,7 +763,7 @@
763763
};
764764
};
765765

766-
pinctrl@03680000 {
766+
pinctrl@03860000 {
767767
gpz: gpz {
768768
gpio-controller;
769769
#gpio-cells = <2>;

arch/arm/boot/dts/exynos5250.dtsi

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -161,9 +161,9 @@
161161
interrupts = <0 50 0>;
162162
};
163163

164-
pinctrl_3: pinctrl@03680000 {
164+
pinctrl_3: pinctrl@03860000 {
165165
compatible = "samsung,exynos5250-pinctrl";
166-
reg = <0x0368000 0x1000>;
166+
reg = <0x03860000 0x1000>;
167167
interrupts = <0 47 0>;
168168
};
169169

drivers/irqchip/irq-gic.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -705,7 +705,7 @@ static int gic_irq_domain_xlate(struct irq_domain *d,
705705
static int __cpuinit gic_secondary_init(struct notifier_block *nfb,
706706
unsigned long action, void *hcpu)
707707
{
708-
if (action == CPU_STARTING)
708+
if (action == CPU_STARTING || action == CPU_STARTING_FROZEN)
709709
gic_cpu_init(&gic_data[0]);
710710
return NOTIFY_OK;
711711
}

0 commit comments

Comments
 (0)