From e28a9455eb7dc4b50a718b278678d3a1671f2f5c Mon Sep 17 00:00:00 2001 From: Seung-Woo Kim Date: Wed, 30 Mar 2022 15:33:57 +0900 Subject: [PATCH] USB: serial: cp210x: add support smartthings link devices Add support smartthings link devices. Change-Id: I54293b816779754f987d876272b1c1a145d9baf2 Signed-off-by: Seung-Woo Kim --- drivers/usb/serial/cp210x.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/drivers/usb/serial/cp210x.c b/drivers/usb/serial/cp210x.c index f906c13..cb0de9e 100644 --- a/drivers/usb/serial/cp210x.c +++ b/drivers/usb/serial/cp210x.c @@ -244,6 +244,10 @@ static const struct usb_device_id id_table[] = { { USB_DEVICE(0x3195, 0xF281) }, /* Link Instruments MSO-28 */ { USB_DEVICE(0x3923, 0x7A0B) }, /* National Instruments USB Serial Console */ { USB_DEVICE(0x413C, 0x9500) }, /* DW700 GPS USB interface */ + { USB_DEVICE(0x04E8, 0x20C6) }, /* SmartThings link WW (Zigbee Only) */ + { USB_DEVICE(0x04E8, 0x20C7) }, /* SmartThings link US */ + { USB_DEVICE(0x04E8, 0x20C8) }, /* SmartThings link EU */ + { USB_DEVICE(0x04E8, 0x20C9) }, /* SmartThings link KR */ { } /* Terminating Entry */ }; -- 2.7.4