2010-02-02 07:22:39

by Joe Perches

[permalink] [raw]
Subject: [PATCH 09/10] drivers/video/via: Fix continuation line formats

String constants that are continued on subsequent lines with \
are not good.

Signed-off-by: Joe Perches <[email protected]>
---
drivers/video/via/dvi.c | 8 ++++----
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 67b3693..b3b7822 100644
--- a/drivers/video/via/dvi.c
+++ b/drivers/video/via/dvi.c
@@ -467,8 +467,8 @@ static int dvi_get_panel_size_from_DDCv1(void)
default:
viaparinfo->tmds_setting_info->dvi_panel_size =
VIA_RES_1024X768;
- 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;
}

@@ -534,8 +534,8 @@ static int dvi_get_panel_size_from_DDCv2(void)
default:
viaparinfo->tmds_setting_info->dvi_panel_size =
VIA_RES_1024X768;
- DEBUG_MSG(KERN_INFO "Unknown panel size max resolution = %d!\
- set default panel size.\n", HSize);
+ DEBUG_MSG(KERN_INFO "Unknown panel size max resolution = %d! "
+ "set default panel size.\n", HSize);
break;
}

diff --git a/drivers/video/via/lcd.c b/drivers/video/via/lcd.c
index 09353e2..4962297 100644
--- a/drivers/video/via/lcd.c
+++ b/drivers/video/via/lcd.c
@@ -171,13 +171,13 @@ static bool lvds_identify_integratedlvds(void)
if (viaparinfo->chip_info->lvds_chip_info.lvds_chip_name) {
viaparinfo->chip_info->lvds_chip_info2.lvds_chip_name =
INTEGRATED_LVDS;
- DEBUG_MSG(KERN_INFO "Support two dual channel LVDS!\
- (Internal LVDS + External LVDS)\n");
+ DEBUG_MSG(KERN_INFO "Support two dual channel LVDS! "
+ "(Internal LVDS + External LVDS)\n");
} else {
viaparinfo->chip_info->lvds_chip_info.lvds_chip_name =
INTEGRATED_LVDS;
- DEBUG_MSG(KERN_INFO "Not found external LVDS,\
- so can't support two dual channel LVDS!\n");
+ DEBUG_MSG(KERN_INFO "Not found external LVDS, "
+ "so can't support two dual channel LVDS!\n");
}
} else if (viafb_display_hardware_layout == HW_LAYOUT_LCD1_LCD2) {
/* Two single channel LCD (Internal LVDS + Internal LVDS): */
@@ -185,8 +185,8 @@ static bool lvds_identify_integratedlvds(void)
INTEGRATED_LVDS;
viaparinfo->chip_info->lvds_chip_info2.lvds_chip_name =
INTEGRATED_LVDS;
- DEBUG_MSG(KERN_INFO "Support two single channel LVDS!\
- (Internal LVDS + Internal LVDS)\n");
+ DEBUG_MSG(KERN_INFO "Support two single channel LVDS! "
+ "(Internal LVDS + Internal LVDS)\n");
} else if (viafb_display_hardware_layout != HW_LAYOUT_DVI_ONLY) {
/* If we have found external LVDS, just use it,
otherwise, we will use internal LVDS as default. */
--
1.6.6.rc0.57.gad7a


Subject: Re: [PATCH 09/10] drivers/video/via: Fix continuation line formats

Hi,

Joe Perches schrieb:
> String constants that are continued on subsequent lines with \
> are not good.

I agree.

> Signed-off-by: Joe Perches <[email protected]>

According to how I understand CodingStyle this is the way those things
should be done.

Acked-by: Florian Tobias Schandinat <[email protected]>

Andrew, can you please take care of this patch?


Thanks,

Florian Tobias Schandinat

> ---
> drivers/video/via/dvi.c | 8 ++++----
> 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 67b3693..b3b7822 100644
> --- a/drivers/video/via/dvi.c
> +++ b/drivers/video/via/dvi.c
> @@ -467,8 +467,8 @@ static int dvi_get_panel_size_from_DDCv1(void)
> default:
> viaparinfo->tmds_setting_info->dvi_panel_size =
> VIA_RES_1024X768;
> - 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;
> }
>
> @@ -534,8 +534,8 @@ static int dvi_get_panel_size_from_DDCv2(void)
> default:
> viaparinfo->tmds_setting_info->dvi_panel_size =
> VIA_RES_1024X768;
> - DEBUG_MSG(KERN_INFO "Unknown panel size max resolution = %d!\
> - set default panel size.\n", HSize);
> + DEBUG_MSG(KERN_INFO "Unknown panel size max resolution = %d! "
> + "set default panel size.\n", HSize);
> break;
> }
>
> diff --git a/drivers/video/via/lcd.c b/drivers/video/via/lcd.c
> index 09353e2..4962297 100644
> --- a/drivers/video/via/lcd.c
> +++ b/drivers/video/via/lcd.c
> @@ -171,13 +171,13 @@ static bool lvds_identify_integratedlvds(void)
> if (viaparinfo->chip_info->lvds_chip_info.lvds_chip_name) {
> viaparinfo->chip_info->lvds_chip_info2.lvds_chip_name =
> INTEGRATED_LVDS;
> - DEBUG_MSG(KERN_INFO "Support two dual channel LVDS!\
> - (Internal LVDS + External LVDS)\n");
> + DEBUG_MSG(KERN_INFO "Support two dual channel LVDS! "
> + "(Internal LVDS + External LVDS)\n");
> } else {
> viaparinfo->chip_info->lvds_chip_info.lvds_chip_name =
> INTEGRATED_LVDS;
> - DEBUG_MSG(KERN_INFO "Not found external LVDS,\
> - so can't support two dual channel LVDS!\n");
> + DEBUG_MSG(KERN_INFO "Not found external LVDS, "
> + "so can't support two dual channel LVDS!\n");
> }
> } else if (viafb_display_hardware_layout == HW_LAYOUT_LCD1_LCD2) {
> /* Two single channel LCD (Internal LVDS + Internal LVDS): */
> @@ -185,8 +185,8 @@ static bool lvds_identify_integratedlvds(void)
> INTEGRATED_LVDS;
> viaparinfo->chip_info->lvds_chip_info2.lvds_chip_name =
> INTEGRATED_LVDS;
> - DEBUG_MSG(KERN_INFO "Support two single channel LVDS!\
> - (Internal LVDS + Internal LVDS)\n");
> + DEBUG_MSG(KERN_INFO "Support two single channel LVDS! "
> + "(Internal LVDS + Internal LVDS)\n");
> } else if (viafb_display_hardware_layout != HW_LAYOUT_DVI_ONLY) {
> /* If we have found external LVDS, just use it,
> otherwise, we will use internal LVDS as default. */