staging: unisys: fix line over 80 characters in mapit()
authorBenjamin Romer <benjamin.romer@unisys.com>
Tue, 4 Nov 2014 16:25:19 +0000 (11:25 -0500)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Wed, 5 Nov 2014 19:50:49 +0000 (11:50 -0800)
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>
drivers/staging/unisys/visorutil/memregion_direct.c

index b5cbf8341f72c123e66ec3e4c6730ec33e152524..37770aa5229d5da8dee8c8fc3e421314e8647799 100644 (file)
@@ -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);