.. | .. |
---|
| 1 | +// SPDX-License-Identifier: GPL-2.0-only |
---|
1 | 2 | /* |
---|
2 | 3 | * linux/drivers/irqchip/irq-zevio.c |
---|
3 | 4 | * |
---|
4 | 5 | * Copyright (C) 2013 Daniel Tang <tangrs@tangrs.id.au> |
---|
5 | | - * |
---|
6 | | - * This program is free software; you can redistribute it and/or modify |
---|
7 | | - * it under the terms of the GNU General Public License version 2, as |
---|
8 | | - * published by the Free Software Foundation. |
---|
9 | | - * |
---|
10 | 6 | */ |
---|
11 | 7 | |
---|
12 | 8 | #include <linux/io.h> |
---|
.. | .. |
---|
55 | 51 | while (readl(zevio_irq_io + IO_STATUS)) { |
---|
56 | 52 | irqnr = readl(zevio_irq_io + IO_CURRENT); |
---|
57 | 53 | handle_domain_irq(zevio_irq_domain, irqnr, regs); |
---|
58 | | - }; |
---|
| 54 | + } |
---|
59 | 55 | } |
---|
60 | 56 | |
---|
61 | 57 | static void __init zevio_init_irq_base(void __iomem *base) |
---|