aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/staging/wfx/hif_rx.c
diff options
context:
space:
mode:
authorColin Ian King <colin.king@canonical.com>2019-10-10 10:57:48 +0100
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2019-10-10 12:47:31 +0200
commitd13cf9eae44414120e67d83229d981408c5ddafa (patch)
tree18814c3d1bb57eb44ad83bd3a98e886c9ead066d /drivers/staging/wfx/hif_rx.c
parentstaging: vc04_services: Avoid NULL comparison (diff)
downloadlinux-dev-d13cf9eae44414120e67d83229d981408c5ddafa.tar.xz
linux-dev-d13cf9eae44414120e67d83229d981408c5ddafa.zip
staging: wfx: fix spelling mistake "non existant" -> "non-existent"
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>
Diffstat (limited to 'drivers/staging/wfx/hif_rx.c')
-rw-r--r--drivers/staging/wfx/hif_rx.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/staging/wfx/hif_rx.c b/drivers/staging/wfx/hif_rx.c
index 52db02d3aa41..36e171b27ae2 100644
--- a/drivers/staging/wfx/hif_rx.c
+++ b/drivers/staging/wfx/hif_rx.c
@@ -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));