staging: ks7010: fix checkpatch SPLIT_STRING
Checkpatch emits WARNING: quoted string split across lines. Concatenate string onto single line. Signed-off-by: Tobin C. Harding <me@tobin.cc> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
f1e79f4b96
commit
7c1c43615d
|
@ -871,8 +871,8 @@ static int ks7010_sdio_probe(struct sdio_func *func,
|
||||||
|
|
||||||
sdio_set_drvdata(func, card);
|
sdio_set_drvdata(func, card);
|
||||||
|
|
||||||
DPRINTK(5, "class = 0x%X, vendor = 0x%X, "
|
DPRINTK(5, "class = 0x%X, vendor = 0x%X, device = 0x%X\n",
|
||||||
"device = 0x%X\n", func->class, func->vendor, func->device);
|
func->class, func->vendor, func->device);
|
||||||
|
|
||||||
/* private memory allocate */
|
/* private memory allocate */
|
||||||
netdev = alloc_etherdev(sizeof(*priv));
|
netdev = alloc_etherdev(sizeof(*priv));
|
||||||
|
|
Loading…
Reference in New Issue