Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 235ecb1d authored by Joe Perches's avatar Joe Perches Committed by David S. Miller
Browse files

drivers/net/davinci_emac.c: Fix continuation line formats



String constants that are continued on subsequent lines with \
are not good.

Signed-off-by: default avatarJoe Perches <joe@perches.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 59b26c72
Loading
Loading
Loading
Loading
+1 −2
Original line number Diff line number Diff line
@@ -2672,8 +2672,7 @@ static int __devinit davinci_emac_probe(struct platform_device *pdev)
	priv->emac_base_phys = res->start + pdata->ctrl_reg_offset;
	size = res->end - res->start + 1;
	if (!request_mem_region(res->start, size, ndev->name)) {
		dev_err(emac_dev, "DaVinci EMAC: failed request_mem_region() \
					 for regs\n");
		dev_err(emac_dev, "DaVinci EMAC: failed request_mem_region() for regs\n");
		rc = -ENXIO;
		goto probe_quit;
	}