Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1594608
| From | Ingo Molnar <mingo@kernel.org> |
|---|---|
| Newsgroups | linux.kernel |
| Subject | [GIT PULL] IRQ fix |
| Date | 2017-03-07 21:30 +0100 |
| Message-ID | <titU5-4iQ-1@gated-at.bofh.it> (permalink) |
| Organization | linux.* mail to news gateway |
Linus,
Please pull the latest irq-urgent-for-linus git tree from:
git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq-urgent-for-linus
# HEAD: b28ace12661fbcfd90959c1e84ff5a85113a82a1 irqchip/crossbar: Fix incorrect type of local variables
Fix an ARM TI DRA7XX SoC irqchip driver local variables type bug/warning.
Thanks,
Ingo
------------------>
Franck Demathieu (1):
irqchip/crossbar: Fix incorrect type of local variables
drivers/irqchip/irq-crossbar.c | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/drivers/irqchip/irq-crossbar.c b/drivers/irqchip/irq-crossbar.c
index 1eef56a89b1f..05bbf171df37 100644
--- a/drivers/irqchip/irq-crossbar.c
+++ b/drivers/irqchip/irq-crossbar.c
@@ -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;
Back to linux.kernel | Previous | Next | Find similar | Unroll thread
[GIT PULL] IRQ fix Ingo Molnar <mingo@kernel.org> - 2017-03-07 21:30 +0100
csiph-web