diff options
author | Colin Ian King <colin.king@canonical.com> | 2019-04-26 14:16:31 +0100 |
---|---|---|
committer | Jiri Kosina <jkosina@suse.cz> | 2019-04-30 15:31:52 +0200 |
commit | 640d4ea83c8aa085407ea93aec65704bf51f4bae (patch) | |
tree | 930fedc0c04aab09df975f483cb19d189848b140 /drivers/hid/hid-logitech-dj.c | |
parent | c08f38e9fd0b5486957ed42438ec8fa9b6ebbf4f (diff) | |
download | linux-640d4ea83c8aa085407ea93aec65704bf51f4bae.tar.bz2 |
HID: logitech-dj: fix spelling in printk
There is a spelling mistake in a hid_err error message, fix it.
Signed-off-by: Colin Ian King <colin.king@canonical.com>
Signed-off-by: Jiri Kosina <jkosina@suse.cz>
Diffstat (limited to 'drivers/hid/hid-logitech-dj.c')
-rw-r--r-- | drivers/hid/hid-logitech-dj.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/hid/hid-logitech-dj.c b/drivers/hid/hid-logitech-dj.c index 64e68ac871cb..b1e894618eed 100644 --- a/drivers/hid/hid-logitech-dj.c +++ b/drivers/hid/hid-logitech-dj.c @@ -1064,7 +1064,7 @@ static void logi_dj_recv_forward_input_report(struct hid_device *hdev, int i; if (report > REPORT_TYPE_RFREPORT_LAST) { - hid_err(hdev, "Unexpect input report number %d\n", report); + hid_err(hdev, "Unexpected input report number %d\n", report); return; } |