diff options
author | Joe Perches <joe@perches.com> | 2010-02-01 16:22:11 -0500 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2010-02-03 23:32:27 -0500 |
commit | 235ecb1db09f481840569fd85eda62e70d03580c (patch) | |
tree | 08d2f1df7df574a269c50fcf72e112f5013bec51 /drivers/net/davinci_emac.c | |
parent | 59b26c72914920fd12695033c5a099fb0bfae935 (diff) |
drivers/net/davinci_emac.c: Fix continuation line formats
String constants that are continued on subsequent lines with \
are not good.
Signed-off-by: Joe Perches <joe@perches.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/davinci_emac.c')
-rw-r--r-- | drivers/net/davinci_emac.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/drivers/net/davinci_emac.c b/drivers/net/davinci_emac.c index 33c4fe26178c..faffad409985 100644 --- a/drivers/net/davinci_emac.c +++ b/drivers/net/davinci_emac.c | |||
@@ -2672,8 +2672,7 @@ static int __devinit davinci_emac_probe(struct platform_device *pdev) | |||
2672 | priv->emac_base_phys = res->start + pdata->ctrl_reg_offset; | 2672 | priv->emac_base_phys = res->start + pdata->ctrl_reg_offset; |
2673 | size = res->end - res->start + 1; | 2673 | size = res->end - res->start + 1; |
2674 | if (!request_mem_region(res->start, size, ndev->name)) { | 2674 | if (!request_mem_region(res->start, size, ndev->name)) { |
2675 | dev_err(emac_dev, "DaVinci EMAC: failed request_mem_region() \ | 2675 | dev_err(emac_dev, "DaVinci EMAC: failed request_mem_region() for regs\n"); |
2676 | for regs\n"); | ||
2677 | rc = -ENXIO; | 2676 | rc = -ENXIO; |
2678 | goto probe_quit; | 2677 | goto probe_quit; |
2679 | } | 2678 | } |