Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

mfd: wm8350-irq: Fix 'line over 80 chars' warning

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>

Lee Jones ebb37dca b9ac2270

+2 -1
+2 -1
drivers/mfd/wm8350-irq.c
··· 497 497 if (pdata && pdata->irq_base > 0) 498 498 irq_base = pdata->irq_base; 499 499 500 - wm8350->irq_base = irq_alloc_descs(irq_base, 0, ARRAY_SIZE(wm8350_irqs), 0); 500 + wm8350->irq_base = 501 + irq_alloc_descs(irq_base, 0, ARRAY_SIZE(wm8350_irqs), 0); 501 502 if (wm8350->irq_base < 0) { 502 503 dev_warn(wm8350->dev, "Allocating irqs failed with %d\n", 503 504 wm8350->irq_base);