diff options
author | Colin Ian King <colin.king@canonical.com> | 2017-05-18 08:42:49 +0100 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2017-06-09 11:44:17 +0200 |
commit | eb7bfcce69a9283db76e6d95ce9a9fcd7abc047a (patch) | |
tree | c4b0e61baa23c167bf3feb6e66c3e27702aa0896 /drivers/thunderbolt | |
parent | a038c0372ee67b326599f214f387aebb67ccf578 (diff) | |
download | linux-eb7bfcce69a9283db76e6d95ce9a9fcd7abc047a.tar.gz linux-eb7bfcce69a9283db76e6d95ce9a9fcd7abc047a.tar.bz2 linux-eb7bfcce69a9283db76e6d95ce9a9fcd7abc047a.zip |
thunderbolt: fix spelling mistake: "missmatch" -> "mismatch"
Trivial fix to spelling mistake in tb_sw_warn warning message
Signed-off-by: Colin Ian King <colin.king@canonical.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/thunderbolt')
-rw-r--r-- | drivers/thunderbolt/eeprom.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/thunderbolt/eeprom.c b/drivers/thunderbolt/eeprom.c index 996c6e29c8ad..308b6e17c88a 100644 --- a/drivers/thunderbolt/eeprom.c +++ b/drivers/thunderbolt/eeprom.c @@ -291,7 +291,7 @@ int tb_drom_read_uid_only(struct tb_switch *sw, u64 *uid) crc = tb_crc8(data + 1, 8); if (crc != data[0]) { - tb_sw_warn(sw, "uid crc8 missmatch (expected: %#x, got: %#x)\n", + tb_sw_warn(sw, "uid crc8 mismatch (expected: %#x, got: %#x)\n", data[0], crc); return -EIO; } |