Commit 2c0e0c88 authored by Joe Perches's avatar Joe Perches Committed by Linus Torvalds

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: default avatarJoe Perches <joe@perches.com>
Acked-by: default avatarFlorian Tobias Schandinat <FlorianSchandinat@gmx.de>
Signed-off-by: default avatarAndrew Morton <akpm@linux-foundation.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@linux-foundation.org>
parent 86619708
...@@ -411,8 +411,8 @@ static void dvi_get_panel_size_from_DDCv1(struct tmds_chip_information ...@@ -411,8 +411,8 @@ static void dvi_get_panel_size_from_DDCv1(struct tmds_chip_information
tmds_setting->max_vres = 1080; tmds_setting->max_vres = 1080;
break; break;
default: default:
DEBUG_MSG(KERN_INFO "Unknown panel size max resolution = %d !\ DEBUG_MSG(KERN_INFO "Unknown panel size max resolution = %d ! "
set default panel size.\n", max_h); "set default panel size.\n", max_h);
break; break;
} }
...@@ -460,8 +460,8 @@ static void dvi_get_panel_size_from_DDCv2(struct tmds_chip_information ...@@ -460,8 +460,8 @@ static void dvi_get_panel_size_from_DDCv2(struct tmds_chip_information
tmds_setting->max_vres = 1200; tmds_setting->max_vres = 1200;
break; break;
default: default:
DEBUG_MSG(KERN_INFO "Unknown panel size max resolution = %d!\ DEBUG_MSG(KERN_INFO "Unknown panel size max resolution = %d! "
set default panel size.\n", tmds_setting->max_hres); "set default panel size.\n", tmds_setting->max_hres);
break; break;
} }
......
...@@ -136,13 +136,13 @@ static bool lvds_identify_integratedlvds(void) ...@@ -136,13 +136,13 @@ static bool lvds_identify_integratedlvds(void)
if (viaparinfo->chip_info->lvds_chip_info.lvds_chip_name) { if (viaparinfo->chip_info->lvds_chip_info.lvds_chip_name) {
viaparinfo->chip_info->lvds_chip_info2.lvds_chip_name = viaparinfo->chip_info->lvds_chip_info2.lvds_chip_name =
INTEGRATED_LVDS; INTEGRATED_LVDS;
DEBUG_MSG(KERN_INFO "Support two dual channel LVDS!\ DEBUG_MSG(KERN_INFO "Support two dual channel LVDS! "
(Internal LVDS + External LVDS)\n"); "(Internal LVDS + External LVDS)\n");
} else { } else {
viaparinfo->chip_info->lvds_chip_info.lvds_chip_name = viaparinfo->chip_info->lvds_chip_info.lvds_chip_name =
INTEGRATED_LVDS; INTEGRATED_LVDS;
DEBUG_MSG(KERN_INFO "Not found external LVDS,\ DEBUG_MSG(KERN_INFO "Not found external LVDS, "
so can't support two dual channel LVDS!\n"); "so can't support two dual channel LVDS!\n");
} }
} else if (viafb_display_hardware_layout == HW_LAYOUT_LCD1_LCD2) { } else if (viafb_display_hardware_layout == HW_LAYOUT_LCD1_LCD2) {
/* Two single channel LCD (Internal LVDS + Internal LVDS): */ /* Two single channel LCD (Internal LVDS + Internal LVDS): */
...@@ -150,8 +150,8 @@ static bool lvds_identify_integratedlvds(void) ...@@ -150,8 +150,8 @@ static bool lvds_identify_integratedlvds(void)
INTEGRATED_LVDS; INTEGRATED_LVDS;
viaparinfo->chip_info->lvds_chip_info2.lvds_chip_name = viaparinfo->chip_info->lvds_chip_info2.lvds_chip_name =
INTEGRATED_LVDS; INTEGRATED_LVDS;
DEBUG_MSG(KERN_INFO "Support two single channel LVDS!\ DEBUG_MSG(KERN_INFO "Support two single channel LVDS! "
(Internal LVDS + Internal LVDS)\n"); "(Internal LVDS + Internal LVDS)\n");
} else if (viafb_display_hardware_layout != HW_LAYOUT_DVI_ONLY) { } else if (viafb_display_hardware_layout != HW_LAYOUT_DVI_ONLY) {
/* If we have found external LVDS, just use it, /* If we have found external LVDS, just use it,
otherwise, we will use internal LVDS as default. */ otherwise, we will use internal LVDS as default. */
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment