summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJohan Meiring <johanmeiring@gmail.com>2012-11-11 22:41:13 +0200
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2012-11-13 15:05:50 -0800
commit9d10b221264b9383fcf8e8628f89e9859c05599d (patch)
treee1a655db8a64223bd443d5be0716f4caff43956a
parent0a8f4a07e668ea9500df83bbe1d73cd06145cdb8 (diff)
downloadlinux-9d10b221264b9383fcf8e8628f89e9859c05599d.tar.bz2
staging: ipack: tpci200: fixes 80 character line length issue
This fixes one of the two instances of an 80+ char line in the file. Fixing the other instance would have decreased the readability of the code, in my opinion. Signed-off-by: Johan Meiring <johanmeiring@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
-rw-r--r--drivers/staging/ipack/carriers/tpci200.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/staging/ipack/carriers/tpci200.c b/drivers/staging/ipack/carriers/tpci200.c
index 24e8e6d63f27..31cafffb8e7f 100644
--- a/drivers/staging/ipack/carriers/tpci200.c
+++ b/drivers/staging/ipack/carriers/tpci200.c
@@ -209,7 +209,8 @@ static int tpci200_request_irq(struct ipack_device *dev,
if (tpci200->slots[dev->slot].irq != NULL) {
dev_err(&dev->dev,
- "Slot [%d:%d] IRQ already registered !\n", dev->bus->bus_nr,
+ "Slot [%d:%d] IRQ already registered !\n",
+ dev->bus->bus_nr,
dev->slot);
res = -EINVAL;
goto out_unlock;