[PATCH][next] virtio: fix spelling mistake "confiugration" -> "configuration"

From: Colin King
Date: Mon Mar 30 2020 - 06:19:07 EST


From: Colin Ian King <colin.king@xxxxxxxxxxxxx>

There are two spelling mistakes of configuration in IFCVF_ERR error
messages. Fix them.

Signed-off-by: Colin Ian King <colin.king@xxxxxxxxxxxxx>
---
drivers/virtio/vdpa/ifcvf/ifcvf_main.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/drivers/virtio/vdpa/ifcvf/ifcvf_main.c b/drivers/virtio/vdpa/ifcvf/ifcvf_main.c
index 8d54dc5b08d2..111ac12f6c8e 100644
--- a/drivers/virtio/vdpa/ifcvf/ifcvf_main.c
+++ b/drivers/virtio/vdpa/ifcvf/ifcvf_main.c
@@ -340,14 +340,14 @@ static int ifcvf_probe(struct pci_dev *pdev, const struct pci_device_id *id)

ret = pci_set_dma_mask(pdev, DMA_BIT_MASK(64));
if (ret) {
- IFCVF_ERR(pdev, "No usable DMA confiugration\n");
+ IFCVF_ERR(pdev, "No usable DMA configuration\n");
return ret;
}

ret = pci_set_consistent_dma_mask(pdev, DMA_BIT_MASK(64));
if (ret) {
IFCVF_ERR(pdev,
- "No usable coherent DMA confiugration\n");
+ "No usable coherent DMA configuration\n");
return ret;
}

--
2.25.1