mfd: wm8350-irq: Fix 'line over 80 chars' warning
authorLee Jones <lee.jones@linaro.org>
Mon, 21 Jul 2014 11:57:25 +0000 (12:57 +0100)
committerLee Jones <lee.jones@linaro.org>
Tue, 22 Jul 2014 12:17:05 +0000 (13:17 +0100)
This is part of an effort to clean-up the MFD subsystem.

WARNING: line over 80 characters
+       wm8350->irq_base = irq_alloc_descs(irq_base, 0, ARRAY_SIZE(wm8350_irqs), 0);

total: 0 errors, 1 warnings, 552 lines checked

Signed-off-by: Lee Jones <lee.jones@linaro.org>
drivers/mfd/wm8350-irq.c

index cd01f7962dfdf996e8a4a695ffbd37db64a69da6..813ff50f95b699a3ee7784f3f12374f24efbca6c 100644 (file)
@@ -497,7 +497,8 @@ int wm8350_irq_init(struct wm8350 *wm8350, int irq,
        if (pdata && pdata->irq_base > 0)
                irq_base = pdata->irq_base;
 
-       wm8350->irq_base = irq_alloc_descs(irq_base, 0, ARRAY_SIZE(wm8350_irqs), 0);
+       wm8350->irq_base =
+               irq_alloc_descs(irq_base, 0, ARRAY_SIZE(wm8350_irqs), 0);
        if (wm8350->irq_base < 0) {
                dev_warn(wm8350->dev, "Allocating irqs failed with %d\n",
                        wm8350->irq_base);