Skip to content

Commit

Permalink
staging: ks7010: fix checkpatch SPLIT_STRING
Browse files Browse the repository at this point in the history
Checkpatch emits WARNING: quoted string split across lines.

Concatenate string onto single line.

Signed-off-by: Tobin C. Harding <[email protected]>
Signed-off-by: Greg Kroah-Hartman <[email protected]>
  • Loading branch information
tcharding authored and gregkh committed Apr 18, 2017
1 parent f1e79f4 commit 7c1c436
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions drivers/staging/ks7010/ks7010_sdio.c
Original file line number Diff line number Diff line change
Expand Up @@ -871,8 +871,8 @@ static int ks7010_sdio_probe(struct sdio_func *func,

sdio_set_drvdata(func, card);

DPRINTK(5, "class = 0x%X, vendor = 0x%X, "
"device = 0x%X\n", func->class, func->vendor, func->device);
DPRINTK(5, "class = 0x%X, vendor = 0x%X, device = 0x%X\n",
func->class, func->vendor, func->device);

/* private memory allocate */
netdev = alloc_etherdev(sizeof(*priv));
Expand Down

0 comments on commit 7c1c436

Please sign in to comment.