diff options
author | Bin Shi <Bin.Shi@csr.com> | 2014-05-06 18:58:36 +0400 |
---|---|---|
committer | Barry Song <Baohua.Song@csr.com> | 2014-05-12 17:43:49 +0400 |
commit | 7caf6852018a7550a2451972522688caef350549 (patch) | |
tree | 575d0c486ba5e0bc33d2b5b1a2bd29be96f5ccd3 /drivers/irqchip/irq-sirfsoc.c | |
parent | 4c1ad70921caa9831b4926e83481c9f825016dd6 (diff) | |
download | linux-7caf6852018a7550a2451972522688caef350549.tar.xz |
irqchip: sirf: fix one minor checkpatch issue
fix "line line over 80 characters" for the below:
static int __init sirfsoc_irq_init(struct device_node *np, struct device_node *parent)
the users of the codes - key customers really care about that.
Signed-off-by: Bin Shi <Bin.Shi@csr.com>
Signed-off-by: Barry Song <Baohua.Song@csr.com>
Diffstat (limited to 'drivers/irqchip/irq-sirfsoc.c')
-rw-r--r-- | drivers/irqchip/irq-sirfsoc.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/irqchip/irq-sirfsoc.c b/drivers/irqchip/irq-sirfsoc.c index 581eefe331ae..5e54f6d71e77 100644 --- a/drivers/irqchip/irq-sirfsoc.c +++ b/drivers/irqchip/irq-sirfsoc.c @@ -58,7 +58,8 @@ static void __exception_irq_entry sirfsoc_handle_irq(struct pt_regs *regs) handle_IRQ(irqnr, regs); } -static int __init sirfsoc_irq_init(struct device_node *np, struct device_node *parent) +static int __init sirfsoc_irq_init(struct device_node *np, + struct device_node *parent) { void __iomem *base = of_iomap(np, 0); if (!base) |