diff options
| author | Felipe Balbi <[email protected]> | 2017-02-22 17:12:41 +0200 |
|---|---|---|
| committer | Marek Vasut <[email protected]> | 2017-04-14 16:44:16 +0200 |
| commit | 207835b13feeae15db0555574d89352a4e5379a4 (patch) | |
| tree | b4109712d271e0ad79407b01851b22f70c46546d /drivers | |
| parent | 842778a091047b0c868efa12229633959f711152 (diff) | |
usb: gadget: g_dnl: don't set iProduct nor iSerialNumber
Both these numbers are calculated in runtime and dynamically assigned
to the device descriptor during bind().
Signed-off-by: Felipe Balbi <[email protected]>
Diffstat (limited to 'drivers')
| -rw-r--r-- | drivers/usb/gadget/g_dnl.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/usb/gadget/g_dnl.c b/drivers/usb/gadget/g_dnl.c index 4cc4438fdb4..d4bee9b03e4 100644 --- a/drivers/usb/gadget/g_dnl.c +++ b/drivers/usb/gadget/g_dnl.c @@ -62,8 +62,8 @@ static struct usb_device_descriptor device_desc = { .idVendor = __constant_cpu_to_le16(CONFIG_G_DNL_VENDOR_NUM), .idProduct = __constant_cpu_to_le16(CONFIG_G_DNL_PRODUCT_NUM), - .iProduct = STRING_PRODUCT, - .iSerialNumber = STRING_SERIAL, + /* .iProduct = DYNAMIC */ + /* .iSerialNumber = DYNAMIC */ .bNumConfigurations = 1, }; |
