summaryrefslogtreecommitdiff
path: root/drivers/staging/sm7xxfb
diff options
context:
space:
mode:
authorMonam Agarwal <monamagarwal123@gmail.com>2014-02-26 15:34:04 +0530
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2014-02-27 14:47:17 -0800
commit7dd1a0a9e065c0eaf688fcebae6296b56bceefee (patch)
tree8a4a982600e50dbe8dfc564dc776c40d550e9851 /drivers/staging/sm7xxfb
parentc272937fd58ad36325eabe4b8bfa1ef66f758e7b (diff)
Staging: sm7xxfb: Fix quoted string split across lines in sm7xxfb.c
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>
Diffstat (limited to 'drivers/staging/sm7xxfb')
-rw-r--r--drivers/staging/sm7xxfb/sm7xxfb.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/drivers/staging/sm7xxfb/sm7xxfb.c b/drivers/staging/sm7xxfb/sm7xxfb.c
index 6176d98744cc..c550b719978e 100644
--- a/drivers/staging/sm7xxfb/sm7xxfb.c
+++ b/drivers/staging/sm7xxfb/sm7xxfb.c
@@ -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);