Skip to content

Commit

Permalink
USB: usbsevseg: fix max length
Browse files Browse the repository at this point in the history
This changes the max length for the usb seven segment delcom device to 8
from 6. Delcom has both 6 and 8 variants and having 8 works fine with
devices which are only 6.

Signed-off-by: Harrison Metzger <harrisonmetz@gmail.com>
Signed-off-by: Stuart Pook <stuart@acm.org>
Cc: stable <stable@vger.kernel.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
  • Loading branch information
Harrison Metzger authored and Greg Kroah-Hartman committed Jan 24, 2012
1 parent e423d74 commit 1097cce
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/usb/misc/usbsevseg.c
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@

#define VENDOR_ID 0x0fc5
#define PRODUCT_ID 0x1227
#define MAXLEN 6
#define MAXLEN 8

/* table of devices that work with this driver */
static const struct usb_device_id id_table[] = {
Expand Down

0 comments on commit 1097cce

Please sign in to comment.