diff options
author | Lubomir Rintel <lkundrak@v3.sk> | 2019-08-16 20:18:49 +0200 |
---|---|---|
committer | Marc Zyngier <maz@kernel.org> | 2019-08-20 10:34:34 +0100 |
commit | 7224cec4e76c8d8169e328923597e659b705760d (patch) | |
tree | d9463c8d09273126a482664ec8600163ad4df6a2 | |
parent | 342be1068d9b5b1fd364d270b4f731764e23de2b (diff) | |
download | linux-stable-7224cec4e76c8d8169e328923597e659b705760d.tar.gz linux-stable-7224cec4e76c8d8169e328923597e659b705760d.tar.bz2 linux-stable-7224cec4e76c8d8169e328923597e659b705760d.zip |
irqchip/mmp: Do not call irq_set_default_host() on DT platforms
Using a default domain on DT platforms is unnecessary, as the firmware
tables describe the full topology, and nothing is implicit.
Signed-off-by: Lubomir Rintel <lkundrak@v3.sk>
[maz: wrote an actual changelog]
Signed-off-by: Marc Zyngier <maz@kernel.org>
-rw-r--r-- | drivers/irqchip/irq-mmp.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/drivers/irqchip/irq-mmp.c b/drivers/irqchip/irq-mmp.c index 14618dc0bd39..0671c3bbfc34 100644 --- a/drivers/irqchip/irq-mmp.c +++ b/drivers/irqchip/irq-mmp.c @@ -395,7 +395,6 @@ static int __init mmp_of_init(struct device_node *node, icu_data[0].conf_enable = mmp_conf.conf_enable; icu_data[0].conf_disable = mmp_conf.conf_disable; icu_data[0].conf_mask = mmp_conf.conf_mask; - irq_set_default_host(icu_data[0].domain); set_handle_irq(mmp_handle_irq); max_icu_nr = 1; return 0; @@ -414,7 +413,6 @@ static int __init mmp2_of_init(struct device_node *node, icu_data[0].conf_enable = mmp2_conf.conf_enable; icu_data[0].conf_disable = mmp2_conf.conf_disable; icu_data[0].conf_mask = mmp2_conf.conf_mask; - irq_set_default_host(icu_data[0].domain); set_handle_irq(mmp2_handle_irq); max_icu_nr = 1; return 0; |