USB: 'option' driver - onda device MT503HS has wrong id

While trying to make GSM modem Onda MT503HS working, I found a mismatch
between device id in the driver code (0x0200) and id in the lsusb
output (0x2000).

This patch fixed it for me, but I don't know if the original device id was
also correct and the new ID should be added instead of replacing the
old one.


Signed-off-by: Marcel Sebek <sebek64@post.cz>
Acked-by: Domenico Riccio <domenico.riccio@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>

authored by Marcel Sebek and committed by Greg Kroah-Hartman 3b498a66 d547f134

+1 -1
+1 -1
drivers/usb/serial/option.c
··· 224 #define ONDA_VENDOR_ID 0x19d2 225 #define ONDA_PRODUCT_MSA501HS 0x0001 226 #define ONDA_PRODUCT_ET502HS 0x0002 227 - #define ONDA_PRODUCT_MT503HS 0x0200 228 229 #define BANDRICH_VENDOR_ID 0x1A8D 230 #define BANDRICH_PRODUCT_C100_1 0x1002
··· 224 #define ONDA_VENDOR_ID 0x19d2 225 #define ONDA_PRODUCT_MSA501HS 0x0001 226 #define ONDA_PRODUCT_ET502HS 0x0002 227 + #define ONDA_PRODUCT_MT503HS 0x2000 228 229 #define BANDRICH_VENDOR_ID 0x1A8D 230 #define BANDRICH_PRODUCT_C100_1 0x1002