Skip to content

Commit 22da734

Browse files
Colin Ian Kingdavem330
authored andcommitted
net: r6040: add in missing white space in error message text
A couple of dev_err messages span two lines and the literal string is missing a white space between words. Add the white space and join the two lines into one. Signed-off-by: Colin Ian King <colin.king@canonical.com> Acked-by: FLorian Fainelli <f.fainelli@gmail.com> Signed-off-by: David S. Miller <davem@davemloft.net>
1 parent 695b4ec commit 22da734

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

drivers/net/ethernet/rdc/r6040.c

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1062,14 +1062,12 @@ static int r6040_init_one(struct pci_dev *pdev, const struct pci_device_id *ent)
10621062
/* this should always be supported */
10631063
err = pci_set_dma_mask(pdev, DMA_BIT_MASK(32));
10641064
if (err) {
1065-
dev_err(&pdev->dev, "32-bit PCI DMA addresses"
1066-
"not supported by the card\n");
1065+
dev_err(&pdev->dev, "32-bit PCI DMA addresses not supported by the card\n");
10671066
goto err_out_disable_dev;
10681067
}
10691068
err = pci_set_consistent_dma_mask(pdev, DMA_BIT_MASK(32));
10701069
if (err) {
1071-
dev_err(&pdev->dev, "32-bit PCI DMA addresses"
1072-
"not supported by the card\n");
1070+
dev_err(&pdev->dev, "32-bit PCI DMA addresses not supported by the card\n");
10731071
goto err_out_disable_dev;
10741072
}
10751073

0 commit comments

Comments
 (0)