Skip to content

Commit 14ff746

Browse files
committed
USB: misc: iowarrior: fix up header size for USB_DEVICE_ID_CODEMERCS_IOW100
The USB_DEVICE_ID_CODEMERCS_IOW100 header size was incorrect, it should be 12, not 13. Cc: stable <stable@kernel.org> Fixes: 17a8271 ("USB: iowarrior: fix up report size handling for some devices") Reported-by: Christoph Jung <jung@codemercs.com> Link: https://lore.kernel.org/r/20230120135330.3842518-1-gregkh@linuxfoundation.org Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
1 parent 5d3d01a commit 14ff746

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

drivers/usb/misc/iowarrior.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -814,7 +814,7 @@ static int iowarrior_probe(struct usb_interface *interface,
814814
break;
815815

816816
case USB_DEVICE_ID_CODEMERCS_IOW100:
817-
dev->report_size = 13;
817+
dev->report_size = 12;
818818
break;
819819
}
820820
}

0 commit comments

Comments
 (0)