summaryrefslogtreecommitdiffstats
path: root/drivers/staging/unisys
diff options
context:
space:
mode:
authorBenjamin Romer <benjamin.romer@unisys.com>2014-11-04 11:25:19 -0500
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2014-11-05 11:50:49 -0800
commit92d00cf0f52198dd364f88eda254cb140e458fe6 (patch)
tree33760981f334f23ae58e32af9aa079874fb2519f /drivers/staging/unisys
parentab2cded1bc22943e552151af7aa4d693a633ce6b (diff)
downloadlinux-stable-92d00cf0f52198dd364f88eda254cb140e458fe6.tar.gz
linux-stable-92d00cf0f52198dd364f88eda254cb140e458fe6.tar.bz2
linux-stable-92d00cf0f52198dd364f88eda254cb140e458fe6.zip
staging: unisys: fix line over 80 characters in mapit()
The error output in mapit() in memregion_direct.c has variables past the 80 character limit. Move them to the next line, but the string constant will still go past the limit, and that's okay. Signed-off-by: Benjamin Romer <benjamin.romer@unisys.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/staging/unisys')
-rw-r--r--drivers/staging/unisys/visorutil/memregion_direct.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/staging/unisys/visorutil/memregion_direct.c b/drivers/staging/unisys/visorutil/memregion_direct.c
index b5cbf8341f72..37770aa5229d 100644
--- a/drivers/staging/unisys/visorutil/memregion_direct.c
+++ b/drivers/staging/unisys/visorutil/memregion_direct.c
@@ -109,7 +109,8 @@ mapit(struct memregion *memregion)
memregion->requested = FALSE;
if (!request_mem_region(physaddr, nbytes, MYDRVNAME))
- ERRDRV("cannot reserve channel memory @0x%lx for 0x%lx-- no big deal", physaddr, nbytes);
+ ERRDRV("cannot reserve channel memory @0x%lx for 0x%lx-- no big deal",
+ physaddr, nbytes);
else
memregion->requested = TRUE;
memregion->mapped = ioremap_cache(physaddr, nbytes);