diff options
author | Colin Ian King <colin.king@canonical.com> | 2019-09-11 13:38:48 +0300 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2019-09-11 17:07:07 +0300 |
commit | 90aa11f1bc5dbb0c392775ed63ced23a3873bcd2 (patch) | |
tree | 421784aac5528927ef55e19fe78f291fbc5167bb /drivers/nfc | |
parent | c5c1a030a7dbf8dd4e1fa4405ae9a89dc1d2a8db (diff) | |
download | linux-90aa11f1bc5dbb0c392775ed63ced23a3873bcd2.tar.xz |
NFC: st95hf: fix spelling mistake "receieve" -> "receive"
There is a spelling mistake in a dev_err message. Fix it.
Signed-off-by: Colin Ian King <colin.king@canonical.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/nfc')
-rw-r--r-- | drivers/nfc/st95hf/core.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/nfc/st95hf/core.c b/drivers/nfc/st95hf/core.c index e42850095892..7eda62a9e0df 100644 --- a/drivers/nfc/st95hf/core.c +++ b/drivers/nfc/st95hf/core.c @@ -316,7 +316,7 @@ static int st95hf_echo_command(struct st95hf_context *st95context) &echo_response); if (result) { dev_err(&st95context->spicontext.spidev->dev, - "err: echo response receieve error = 0x%x\n", result); + "err: echo response receive error = 0x%x\n", result); return result; } |