diff options
| author | Esra Altintas <[email protected]> | 2014-09-27 13:49:02 +0300 |
|---|---|---|
| committer | Greg Kroah-Hartman <[email protected]> | 2014-09-28 23:30:54 -0400 |
| commit | 99f8dbc5644636ef1fda283da1b7dab90a3ef131 (patch) | |
| tree | bd18255dc4ccc7835086df9510a9bd0206df4fce | |
| parent | 2e98f76c8fe3247e2118b948799e0ea491f35b9e (diff) | |
staging: octeon: Fix line 80 characters in ethernet.c
The following patch fixes the checpatch.pl warning:
WARNING: line over 80 characters
Signed-off-by: Esra Altintas <[email protected]>
Signed-off-by: Greg Kroah-Hartman <[email protected]>
| -rw-r--r-- | drivers/staging/octeon/ethernet.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/staging/octeon/ethernet.c b/drivers/staging/octeon/ethernet.c index a014b5d687ef..8f9e3fb4871d 100644 --- a/drivers/staging/octeon/ethernet.c +++ b/drivers/staging/octeon/ethernet.c @@ -720,7 +720,8 @@ static int cvm_oct_probe(struct platform_device *pdev) struct net_device *dev = alloc_etherdev(sizeof(struct octeon_ethernet)); if (!dev) { - pr_err("Failed to allocate ethernet device for port %d\n", port); + pr_err("Failed to allocate ethernet device for port %d\n", + port); continue; } |