Commit bba84bf4 authored by Jonathan Cooper's avatar Jonathan Cooper Committed by David S. Miller
Browse files

sfc: Unsplit literal string.



Minor fix to existing code to later patch checkpatch clean.

Signed-off-by: default avatarJonathan Cooper <jonathan.s.cooper@amd.com>
Acked-by: default avatarMartin Habets <habetsm.xilinx@gmail.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 3e341d84
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -1098,8 +1098,8 @@ int efx_init_io(struct efx_nic *efx, int bar, dma_addr_t dma_mask,
	efx->membase_phys = pci_resource_start(efx->pci_dev, bar);
	if (!efx->membase_phys) {
		netif_err(efx, probe, efx->net_dev,
			  "ERROR: No BAR%d mapping from the BIOS. "
			  "Try pci=realloc on the kernel command line\n", bar);
			  "ERROR: No BAR%d mapping from the BIOS. Try pci=realloc on the kernel command line\n",
			  bar);
		rc = -ENODEV;
		goto fail3;
	}