Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 26db8f99 authored by Linus Torvalds's avatar Linus Torvalds
Browse files

Merge branch 'irq-urgent-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip

Pull IRQ fix from Ingo Molnar:
 "Fix an ARM TI DRA7XX SoC irqchip driver local variables type
  bug/warning"

* 'irq-urgent-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip:
  irqchip/crossbar: Fix incorrect type of local variables
parents 21f85778 b28ace12
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -198,7 +198,8 @@ static const struct irq_domain_ops crossbar_domain_ops = {

static int __init crossbar_of_init(struct device_node *node)
{
	int i, size, max = 0, reserved = 0, entry;
	int i, size, reserved = 0;
	u32 max = 0, entry;
	const __be32 *irqsr;
	int ret = -ENOMEM;