diff options
author | 2025-02-28 08:41:39 +0000 | |
---|---|---|
committer | 2025-03-04 21:47:23 +0100 | |
commit | 0132c406705a466b95854ce1058f3d8354f90a42 (patch) | |
tree | c2308919c4014638826435f2c5f5527615aff41e /drivers/hid/intel-thc-hid/intel-quickspi/quickspi-protocol.c | |
parent | HID: hid-steam: Fix use-after-free when detaching device (diff) | |
download | wireguard-linux-0132c406705a466b95854ce1058f3d8354f90a42.tar.xz wireguard-linux-0132c406705a466b95854ce1058f3d8354f90a42.zip |
HID: intel-thc-hid: Fix spelling mistake "intput" -> "input"
There is a spelling mistake in a dev_err_once message. Fix it.
Signed-off-by: Colin Ian King <colin.i.king@gmail.com>
Reviewed-by: Even Xu <even.xu@intel.com>
Signed-off-by: Jiri Kosina <jkosina@suse.com>
Diffstat (limited to '')
-rw-r--r-- | drivers/hid/intel-thc-hid/intel-quickspi/quickspi-protocol.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/hid/intel-thc-hid/intel-quickspi/quickspi-protocol.c b/drivers/hid/intel-thc-hid/intel-quickspi/quickspi-protocol.c index 7373238ceb18..918050af73e5 100644 --- a/drivers/hid/intel-thc-hid/intel-quickspi/quickspi-protocol.c +++ b/drivers/hid/intel-thc-hid/intel-quickspi/quickspi-protocol.c @@ -107,7 +107,7 @@ static int quickspi_get_device_descriptor(struct quickspi_device *qsdev) return 0; } - dev_err_once(qsdev->dev, "Unexpected intput report type: %d\n", input_rep_type); + dev_err_once(qsdev->dev, "Unexpected input report type: %d\n", input_rep_type); return -EINVAL; } |