mirror of https://gitee.com/openkylin/linux.git
staging: octeon: Fix quoted string split warning.
This patch fixes "quoted string split across lines" checkpatch.pl warning in ethernet.c Signed-off-by: Gulsah Kose <gulsah.1004@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
39bc7513aa
commit
0a5fcc6b2e
|
@ -785,8 +785,7 @@ static int cvm_oct_probe(struct platform_device *pdev)
|
|||
if (!dev->netdev_ops) {
|
||||
free_netdev(dev);
|
||||
} else if (register_netdev(dev) < 0) {
|
||||
pr_err("Failed to register ethernet device "
|
||||
"for interface %d, port %d\n",
|
||||
pr_err("Failed to register ethernet device for interface %d, port %d\n",
|
||||
interface, priv->port);
|
||||
free_netdev(dev);
|
||||
} else {
|
||||
|
|
Loading…
Reference in New Issue