misc: gehc-achc: Fix spelling mistake "Verfication" -> "Verification"
authorColin Ian King <colin.king@canonical.com>
Sun, 15 Aug 2021 21:42:06 +0000 (22:42 +0100)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Mon, 16 Aug 2021 17:02:11 +0000 (19:02 +0200)
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>
drivers/misc/gehc-achc.c

index 891d9a2..02f33bc 100644 (file)
@@ -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);
        }