Staging: sm7xxfb: Fix quoted string split across lines in sm7xxfb.c
authorMonam Agarwal <monamagarwal123@gmail.com>
Wed, 26 Feb 2014 10:04:04 +0000 (15:34 +0530)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Thu, 27 Feb 2014 22:47:17 +0000 (14:47 -0800)
This patch fixes the following checkpatch.pl issues in sm7xxfb.c:
WARNING: Quoted string split across lines

Signed-off-by: Monam Agarwal <monamagarwal123@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/sm7xxfb/sm7xxfb.c

index 6176d98744cc669a1d11305f5bc34631f1a55525..c550b719978e68637af7b12327c7326ad8f740c9 100644 (file)
@@ -472,8 +472,7 @@ static void sm7xx_set_timing(struct smtcfb_info *sfb)
        u32 m_nScreenStride;
 
        dev_dbg(&sfb->pdev->dev,
-               "sfb->width=%d sfb->height=%d "
-               "sfb->fb.var.bits_per_pixel=%d sfb->hz=%d\n",
+               "sfb->width=%d sfb->height=%d sfb->fb.var.bits_per_pixel=%d sfb->hz=%d\n",
                sfb->width, sfb->height, sfb->fb.var.bits_per_pixel, sfb->hz);
 
        for (j = 0; j < numVGAModes; j++) {
@@ -483,8 +482,7 @@ static void sm7xx_set_timing(struct smtcfb_info *sfb)
                    VGAMode[j].hz == sfb->hz) {
 
                        dev_dbg(&sfb->pdev->dev,
-                               "VGAMode[j].mmSizeX=%d VGAMode[j].mmSizeY=%d "
-                               "VGAMode[j].bpp=%d VGAMode[j].hz=%d\n",
+                               "VGAMode[j].mmSizeX=%d VGAMode[j].mmSizeY=%d VGAMode[j].bpp=%d VGAMode[j].hz=%d\n",
                                VGAMode[j].mmSizeX, VGAMode[j].mmSizeY,
                                VGAMode[j].bpp, VGAMode[j].hz);
 
This page took 0.044805 seconds and 5 git commands to generate.