diff --git a/XDMA/linux-kernel/xdma/xdma_mod.c b/XDMA/linux-kernel/xdma/xdma_mod.c index fe51eab84..0aa9e21d2 100644 --- a/XDMA/linux-kernel/xdma/xdma_mod.c +++ b/XDMA/linux-kernel/xdma/xdma_mod.c @@ -173,13 +173,13 @@ static int probe_one(struct pci_dev *pdev, const struct pci_device_id *id) } if (xpdev->h2c_channel_max > XDMA_CHANNEL_NUM_MAX) { - pr_err("Maximun H2C channel limit reached\n"); + pr_err("Maximum H2C channel limit reached\n"); rv = -EINVAL; goto err_out; } if (xpdev->c2h_channel_max > XDMA_CHANNEL_NUM_MAX) { - pr_err("Maximun C2H channel limit reached\n"); + pr_err("Maximum C2H channel limit reached\n"); rv = -EINVAL; goto err_out; }