diff options
author | Joe Perches <joe@perches.com> | 2010-03-10 18:21:48 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2010-03-12 18:52:34 -0500 |
commit | 2c0e0c88422033c9b6162bf7875aecdd095130b7 (patch) | |
tree | b2d61e5057965793908f0690d7cdfa180cf6f9f0 /drivers/video | |
parent | 8661970875d7d27e4de233d357327fffdb4a5e3d (diff) |
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')
-rw-r--r-- | drivers/video/via/dvi.c | 8 | ||||
-rw-r--r-- | drivers/video/via/lcd.c | 12 |
2 files changed, 10 insertions, 10 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 | |||
411 | tmds_setting->max_vres = 1080; | 411 | tmds_setting->max_vres = 1080; |
412 | break; | 412 | break; |
413 | default: | 413 | default: |
414 | DEBUG_MSG(KERN_INFO "Unknown panel size max resolution = %d !\ | 414 | DEBUG_MSG(KERN_INFO "Unknown panel size max resolution = %d ! " |
415 | set default panel size.\n", max_h); | 415 | "set default panel size.\n", max_h); |
416 | break; | 416 | break; |
417 | } | 417 | } |
418 | 418 | ||
@@ -460,8 +460,8 @@ static void dvi_get_panel_size_from_DDCv2(struct tmds_chip_information | |||
460 | tmds_setting->max_vres = 1200; | 460 | tmds_setting->max_vres = 1200; |
461 | break; | 461 | break; |
462 | default: | 462 | default: |
463 | DEBUG_MSG(KERN_INFO "Unknown panel size max resolution = %d!\ | 463 | DEBUG_MSG(KERN_INFO "Unknown panel size max resolution = %d! " |
464 | set default panel size.\n", tmds_setting->max_hres); | 464 | "set default panel size.\n", tmds_setting->max_hres); |
465 | break; | 465 | break; |
466 | } | 466 | } |
467 | 467 | ||
diff --git a/drivers/video/via/lcd.c b/drivers/video/via/lcd.c index 1d1176c3dc44..1b1ccdc2d83d 100644 --- a/drivers/video/via/lcd.c +++ b/drivers/video/via/lcd.c | |||
@@ -136,13 +136,13 @@ static bool lvds_identify_integratedlvds(void) | |||
136 | if (viaparinfo->chip_info->lvds_chip_info.lvds_chip_name) { | 136 | if (viaparinfo->chip_info->lvds_chip_info.lvds_chip_name) { |
137 | viaparinfo->chip_info->lvds_chip_info2.lvds_chip_name = | 137 | viaparinfo->chip_info->lvds_chip_info2.lvds_chip_name = |
138 | INTEGRATED_LVDS; | 138 | INTEGRATED_LVDS; |
139 | DEBUG_MSG(KERN_INFO "Support two dual channel LVDS!\ | 139 | DEBUG_MSG(KERN_INFO "Support two dual channel LVDS! " |
140 | (Internal LVDS + External LVDS)\n"); | 140 | "(Internal LVDS + External LVDS)\n"); |
141 | } else { | 141 | } else { |
142 | viaparinfo->chip_info->lvds_chip_info.lvds_chip_name = | 142 | viaparinfo->chip_info->lvds_chip_info.lvds_chip_name = |
143 | INTEGRATED_LVDS; | 143 | INTEGRATED_LVDS; |
144 | DEBUG_MSG(KERN_INFO "Not found external LVDS,\ | 144 | DEBUG_MSG(KERN_INFO "Not found external LVDS, " |
145 | so can't support two dual channel LVDS!\n"); | 145 | "so can't support two dual channel LVDS!\n"); |
146 | } | 146 | } |
147 | } else if (viafb_display_hardware_layout == HW_LAYOUT_LCD1_LCD2) { | 147 | } else if (viafb_display_hardware_layout == HW_LAYOUT_LCD1_LCD2) { |
148 | /* Two single channel LCD (Internal LVDS + Internal LVDS): */ | 148 | /* Two single channel LCD (Internal LVDS + Internal LVDS): */ |
@@ -150,8 +150,8 @@ static bool lvds_identify_integratedlvds(void) | |||
150 | INTEGRATED_LVDS; | 150 | INTEGRATED_LVDS; |
151 | viaparinfo->chip_info->lvds_chip_info2.lvds_chip_name = | 151 | viaparinfo->chip_info->lvds_chip_info2.lvds_chip_name = |
152 | INTEGRATED_LVDS; | 152 | INTEGRATED_LVDS; |
153 | DEBUG_MSG(KERN_INFO "Support two single channel LVDS!\ | 153 | DEBUG_MSG(KERN_INFO "Support two single channel LVDS! " |
154 | (Internal LVDS + Internal LVDS)\n"); | 154 | "(Internal LVDS + Internal LVDS)\n"); |
155 | } else if (viafb_display_hardware_layout != HW_LAYOUT_DVI_ONLY) { | 155 | } else if (viafb_display_hardware_layout != HW_LAYOUT_DVI_ONLY) { |
156 | /* If we have found external LVDS, just use it, | 156 | /* If we have found external LVDS, just use it, |
157 | otherwise, we will use internal LVDS as default. */ | 157 | otherwise, we will use internal LVDS as default. */ |