diff options
author | Joe Perches <joe@perches.com> | 2010-03-10 15:21:48 -0800 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2010-03-12 15:52:34 -0800 |
commit | 2c0e0c88422033c9b6162bf7875aecdd095130b7 (patch) | |
tree | b2d61e5057965793908f0690d7cdfa180cf6f9f0 /drivers/video/via/dvi.c | |
parent | 8661970875d7d27e4de233d357327fffdb4a5e3d (diff) | |
download | blackbird-op-linux-2c0e0c88422033c9b6162bf7875aecdd095130b7.tar.gz blackbird-op-linux-2c0e0c88422033c9b6162bf7875aecdd095130b7.zip |
drivers/video/via: fix continuation line formats
String constants that are continued on subsequent lines with \ will cause
spurious whitespace in the resulting output.
Signed-off-by: Joe Perches <joe@perches.com>
Acked-by: Florian Tobias Schandinat <FlorianSchandinat@gmx.de>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'drivers/video/via/dvi.c')
-rw-r--r-- | drivers/video/via/dvi.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/drivers/video/via/dvi.c b/drivers/video/via/dvi.c index 0e0852e6df26..abe59b8c7a05 100644 --- a/drivers/video/via/dvi.c +++ b/drivers/video/via/dvi.c @@ -411,8 +411,8 @@ static void dvi_get_panel_size_from_DDCv1(struct tmds_chip_information tmds_setting->max_vres = 1080; break; default: - DEBUG_MSG(KERN_INFO "Unknown panel size max resolution = %d !\ - set default panel size.\n", max_h); + DEBUG_MSG(KERN_INFO "Unknown panel size max resolution = %d ! " + "set default panel size.\n", max_h); break; } @@ -460,8 +460,8 @@ static void dvi_get_panel_size_from_DDCv2(struct tmds_chip_information tmds_setting->max_vres = 1200; break; default: - DEBUG_MSG(KERN_INFO "Unknown panel size max resolution = %d!\ - set default panel size.\n", tmds_setting->max_hres); + DEBUG_MSG(KERN_INFO "Unknown panel size max resolution = %d! " + "set default panel size.\n", tmds_setting->max_hres); break; } |