diff options
author | Fabio Estevam <festevam@gmail.com> | 2024-03-25 10:52:30 -0300 |
---|---|---|
committer | Fabio Estevam <festevam@gmail.com> | 2024-03-30 13:55:01 -0300 |
commit | b53005cafc775ba95f88913569219924482ebddd (patch) | |
tree | 7bdb5315285ec23c4209103494b1b17f73cc4f5e | |
parent | 6e2228fb052b68c84688d5baff06e2ebc787a4a5 (diff) | |
download | u-boot-b53005cafc775ba95f88913569219924482ebddd.zip u-boot-b53005cafc775ba95f88913569219924482ebddd.tar.gz u-boot-b53005cafc775ba95f88913569219924482ebddd.tar.bz2 |
phycore_pcl063: Drop leading zero from USB vendor number
CONFIG_USB_GADGET_VENDOR_NUM is a 16-bit number, so remove
the leading zero.
Reported-by: Marek Vasut <marex@denx.de>
Signed-off-by: Fabio Estevam <festevam@gmail.com>
Reviewed-by: Marek Vasut <marex@denx.de>
-rw-r--r-- | configs/phycore_pcl063_defconfig | 2 | ||||
-rw-r--r-- | configs/phycore_pcl063_ull_defconfig | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/configs/phycore_pcl063_defconfig b/configs/phycore_pcl063_defconfig index 6b00df1..017054a 100644 --- a/configs/phycore_pcl063_defconfig +++ b/configs/phycore_pcl063_defconfig @@ -63,7 +63,7 @@ CONFIG_USB=y CONFIG_SPL_USB_HOST=y CONFIG_USB_GADGET=y CONFIG_USB_GADGET_MANUFACTURER="Phytec" -CONFIG_USB_GADGET_VENDOR_NUM=0x01b67 +CONFIG_USB_GADGET_VENDOR_NUM=0x1b67 CONFIG_USB_GADGET_PRODUCT_NUM=0x4fff CONFIG_CI_UDC=y CONFIG_USB_GADGET_DOWNLOAD=y diff --git a/configs/phycore_pcl063_ull_defconfig b/configs/phycore_pcl063_ull_defconfig index 6195fcf..b3da43a 100644 --- a/configs/phycore_pcl063_ull_defconfig +++ b/configs/phycore_pcl063_ull_defconfig @@ -54,7 +54,7 @@ CONFIG_USB=y CONFIG_SPL_USB_HOST=y CONFIG_USB_GADGET=y CONFIG_USB_GADGET_MANUFACTURER="Phytec" -CONFIG_USB_GADGET_VENDOR_NUM=0x01b67 +CONFIG_USB_GADGET_VENDOR_NUM=0x1b67 CONFIG_USB_GADGET_PRODUCT_NUM=0x4fff CONFIG_CI_UDC=y CONFIG_USB_GADGET_DOWNLOAD=y |