staging: wfx: fix spelling mistake "non existant" -> "non-existent"
authorColin Ian King <colin.king@canonical.com>
Thu, 10 Oct 2019 09:57:48 +0000 (10:57 +0100)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Thu, 10 Oct 2019 10:47:31 +0000 (12:47 +0200)
There is a spelling mistake in a dev_warn message. Fix it.

Signed-off-by: Colin Ian King <colin.king@canonical.com>
Link: https://lore.kernel.org/r/20191010095748.17047-1-colin.king@canonical.com
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/wfx/hif_rx.c

index 52db02d..36e171b 100644 (file)
@@ -137,7 +137,7 @@ static int hif_receive_indication(struct wfx_dev *wdev, struct hif_msg *hif, voi
        struct hif_ind_rx *body = buf;
 
        if (!wvif) {
-               dev_warn(wdev->dev, "ignore rx data for non existant vif %d\n", hif->interface);
+               dev_warn(wdev->dev, "ignore rx data for non-existent vif %d\n", hif->interface);
                return 0;
        }
        skb_pull(skb, sizeof(struct hif_msg) + sizeof(struct hif_ind_rx));