From 5d5d4c6bc7739165dffdad7357cf319e81de07ac Mon Sep 17 00:00:00 2001 From: Mathieu Dubois-Briand Date: Wed, 8 Oct 2025 11:08:16 +0200 Subject: [PATCH] imx93_frdm: Fix USB vendor ID NXP manufacturing tools expect the device to have the NXP 0x1fc9 vendor ID instead of 0x0525. This is the value already used by other i.MX8 and i.MX9 boards. Signed-off-by: Mathieu Dubois-Briand --- configs/imx93_frdm_defconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configs/imx93_frdm_defconfig b/configs/imx93_frdm_defconfig index eddd36c618d..ae95c57218c 100644 --- a/configs/imx93_frdm_defconfig +++ b/configs/imx93_frdm_defconfig @@ -127,7 +127,7 @@ CONFIG_USB=y CONFIG_USB_EHCI_HCD=y CONFIG_USB_GADGET=y CONFIG_USB_GADGET_MANUFACTURER="FSL" -CONFIG_USB_GADGET_VENDOR_NUM=0x0525 +CONFIG_USB_GADGET_VENDOR_NUM=0x1fc9 CONFIG_USB_GADGET_PRODUCT_NUM=0x0152 CONFIG_CI_UDC=y CONFIG_ULP_WATCHDOG=y -- 2.47.3