From 2bf4c87605879758f299953fa5cf4a4ecb6a4edb Mon Sep 17 00:00:00 2001 From: Greg Kroah-Hartman Date: Mon, 2 Mar 2015 08:52:07 -0800 Subject: [PATCH] greybus: es2: fix USB id to not be the same as ES1 We don't want to bind to the ES1 device, that would be bad. Signed-off-by: Greg Kroah-Hartman --- drivers/staging/greybus/es2.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/drivers/staging/greybus/es2.c b/drivers/staging/greybus/es2.c index 4154cce52a16..d8d45bec4f1d 100644 --- a/drivers/staging/greybus/es2.c +++ b/drivers/staging/greybus/es2.c @@ -29,8 +29,8 @@ #define ES1_GBUF_MSG_SIZE_MAX PAGE_SIZE static const struct usb_device_id id_table[] = { - /* Made up numbers for the SVC USB Bridge in ES1 */ - { USB_DEVICE(0xffff, 0x0001) }, + /* Made up numbers for the SVC USB Bridge in ES2 */ + { USB_DEVICE(0xffff, 0x0002) }, { }, }; MODULE_DEVICE_TABLE(usb, id_table); -- 2.20.1