Commit 5e11d16c authored by Mars Cheng's avatar Mars Cheng Committed by Marc Zyngier

irqchip/mtk-sysirq: Remove unnecessary barrier when configuring trigger

This prevent unnecessary visibility when configuring trigger type
Signed-off-by: default avatarMars Cheng <mars.cheng@mediatek.com>
Signed-off-by: default avatarMarc Zyngier <marc.zyngier@arm.com>
parent 13683f9b
......@@ -57,7 +57,7 @@ static int mtk_sysirq_set_type(struct irq_data *data, unsigned int type)
value &= ~(1 << offset);
}
writel(value, base + reg_index * 4);
writel_relaxed(value, base + reg_index * 4);
data = data->parent_data;
ret = data->chip->irq_set_type(data, type);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment