diff options
author | Colin Ian King <colin.king@canonical.com> | 2021-08-16 00:42:06 +0300 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2021-08-16 20:02:11 +0300 |
commit | 16af5357d5842785a5646684281fad259310dce0 (patch) | |
tree | 2c0758f620ce350ddac9119828e0d4e0489d8a07 /drivers/misc/gehc-achc.c | |
parent | 3683b761fe3a10ad18515acd5368dd601268cfe5 (diff) | |
download | linux-16af5357d5842785a5646684281fad259310dce0.tar.xz |
misc: gehc-achc: Fix spelling mistake "Verfication" -> "Verification"
There is a spelling mistake in a dev_dbg debug message. Fix it.
Reviewed-by: Sebastian Reichel <sebastian.reichel@collabora.com>
Signed-off-by: Colin Ian King <colin.king@canonical.com>
Link: https://lore.kernel.org/r/20210815214206.47970-1-colin.king@canonical.com
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/misc/gehc-achc.c')
-rw-r--r-- | drivers/misc/gehc-achc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/misc/gehc-achc.c b/drivers/misc/gehc-achc.c index 891d9a214454..02f33bc60c56 100644 --- a/drivers/misc/gehc-achc.c +++ b/drivers/misc/gehc-achc.c @@ -280,7 +280,7 @@ static int ezport_flash_compare(struct spi_device *spi, u32 address, ret = memcmp(payload, buffer + 4 + 1, payload_size); if (ret) { ret = -EBADMSG; - dev_dbg(&spi->dev, "Verfication failure @ %06x", address); + dev_dbg(&spi->dev, "Verification failure @ %06x", address); print_hex_dump_bytes("fw: ", DUMP_PREFIX_OFFSET, payload, payload_size); print_hex_dump_bytes("dev: ", DUMP_PREFIX_OFFSET, buffer + 4, payload_size); } |