Due to a typo the defaults for Qualcomm were never actually
set, this got missed in the original patch (maybe time to rename
ARCH_SNAPDRAGON...).
Fixes: 934647d49c61 ("usb: gadget: Introduce usb gadget vendor/product default
id for ARCH_QCOM")
Signed-off-by: Casey Connolly <[email protected]>
---
drivers/usb/gadget/Kconfig | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/drivers/usb/gadget/Kconfig b/drivers/usb/gadget/Kconfig
index 7e08aeab9043..ebb306852a65 100644
--- a/drivers/usb/gadget/Kconfig
+++ b/drivers/usb/gadget/Kconfig
@@ -60,9 +60,9 @@ config USB_GADGET_VENDOR_NUM
hex "Vendor ID of the USB device"
default 0x0955 if ARCH_TEGRA
default 0x1f3a if ARCH_SUNXI
default 0x2207 if ARCH_ROCKCHIP
- default 0x18d1 if ARCH_QCOM
+ default 0x18d1 if ARCH_SNAPDRAGON
default 0x0
help
Vendor ID of the USB device emulated, reported to the host device.
This is usually the board or SoC vendor's, unless you've registered
@@ -88,9 +88,9 @@ config USB_GADGET_PRODUCT_NUM
default 0x350a if ROCKCHIP_RK3568
default 0x350b if ROCKCHIP_RK3588
default 0x350c if ROCKCHIP_RK3528
default 0x350e if ROCKCHIP_RK3576
- default 0x4ee0 if ARCH_QCOM
+ default 0x4ee0 if ARCH_SNAPDRAGON
default 0x0
help
Product ID of the USB device emulated, reported to the host device.
--
2.51.0