From: Florian Tobias Schandinat <FlorianSchandinat@gmx.de>
To: Joe Perches <joe@perches.com>
Cc: linux-kernel@vger.kernel.org, Joseph Chan <JosephChan@via.com.tw>,
Scott Fang <ScottFang@viatech.com.cn>,
linux-fbdev@vger.kernel.org,
Andrew Morton <akpm@linux-foundation.org>
Subject: Re: [PATCH 09/10] drivers/video/via: Fix continuation line formats
Date: Wed, 03 Feb 2010 23:36:44 +0100 [thread overview]
Message-ID: <4B69FA7C.9040309@gmx.de> (raw)
In-Reply-To: <4affbba1523b0cc13bb02f309e3091a29a6ccf6a.1265095094.git.joe@perches.com>
Hi,
Joe Perches schrieb:
> String constants that are continued on subsequent lines with \
> are not good.
I agree.
> Signed-off-by: Joe Perches <joe@perches.com>
According to how I understand CodingStyle this is the way those things
should be done.
Acked-by: Florian Tobias Schandinat <FlorianSchandinat@gmx.de>
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. */
next prev parent reply other threads:[~2010-02-03 22:36 UTC|newest]
Thread overview: 26+ messages / expand[flat|nested] mbox.gz Atom feed top
[not found] <cover.1265095093.git.joe@perches.com>
2010-02-02 7:22 ` [PATCH 01/10] arch/ia64: Fix continuation line formats Joe Perches
2010-02-07 11:43 ` Avi Kivity
2010-02-02 7:22 ` [PATCH 02/10] drivers/ata: " Joe Perches
2010-02-03 17:21 ` Mark Lord
2010-02-03 17:25 ` Jeff Garzik
2010-02-03 19:15 ` Joe Perches
2010-02-04 1:39 ` Krzysztof Halasa
2010-02-04 3:36 ` Joe Perches
2010-02-04 4:59 ` Mark Lord
2010-02-04 5:13 ` Andrew Morton
2010-02-04 14:03 ` Mark Lord
2010-02-04 5:16 ` Joe Perches
2010-02-04 14:07 ` Mark Lord
2010-02-02 7:22 ` [PATCH 03/10] drivers/gpu/drm/i915/intel_bios.c: " Joe Perches
2010-02-02 7:22 ` [PATCH 04/10] drivers/hwmon/vt8231.c: " Joe Perches
2010-02-02 7:56 ` [lm-sensors] " Jean Delvare
2010-02-02 8:01 ` Joe Perches
2010-02-02 7:22 ` [PATCH 05/10] drivers/net/davinci_emac.c: " Joe Perches
2010-02-02 7:22 ` [PATCH 06/10] drivers/scsi/qla2xxx/qua_os.c: " Joe Perches
2010-02-02 7:22 ` [PATCH 07/10] drivers/spi/spi_s3c64xx.c: " Joe Perches
2010-02-02 8:21 ` Grant Likely
2010-02-02 7:22 ` [PATCH 08/10] drivers/staging: " Joe Perches
2010-02-02 7:22 ` [PATCH 09/10] drivers/video/via: " Joe Perches
2010-02-03 22:36 ` Florian Tobias Schandinat [this message]
2010-02-02 7:22 ` [PATCH 10/10] sound/soc/s3c24xx/s2c-pcm.c: " Joe Perches
2010-02-02 11:40 ` Mark Brown
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=4B69FA7C.9040309@gmx.de \
--to=florianschandinat@gmx.de \
--cc=JosephChan@via.com.tw \
--cc=ScottFang@viatech.com.cn \
--cc=akpm@linux-foundation.org \
--cc=joe@perches.com \
--cc=linux-fbdev@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox