[PATCH] arm: mach-omap2: am33xx: musb: Fix condition for USB device definition
Tom Rini
trini at konsulko.com
Wed Jun 21 19:32:39 CEST 2023
On Wed, Jun 21, 2023 at 05:56:56PM +0200, Julien Panis wrote:
> This patch fixes a bad condition for USB device definition.
> This prevents from getting a "No USB device found" error.
>
> Fixes: 6815a66ad7430 ("am33xx: musb: Remove unused configuration logic")
> Signed-off-by: Julien Panis <jpanis at baylibre.com>
> ---
> This patch fixes a bad condition which leads to
> 'no USB device found' error, in usb_ether_init()
> function for instance.
> ---
> arch/arm/mach-omap2/am33xx/board.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/arch/arm/mach-omap2/am33xx/board.c b/arch/arm/mach-omap2/am33xx/board.c
> index ecc0a592e993..000c0d7712f9 100644
> --- a/arch/arm/mach-omap2/am33xx/board.c
> +++ b/arch/arm/mach-omap2/am33xx/board.c
> @@ -208,7 +208,7 @@ int cpu_mmc_init(struct bd_info *bis)
>
> /* AM33XX has two MUSB controllers which can be host or gadget */
> #if (defined(CONFIG_AM335X_USB0) || defined(CONFIG_AM335X_USB1)) && \
> - defined(CONFIG_SPL_BUILD)
> + !defined(CONFIG_SPL_BUILD)
>
> static struct musb_hdrc_config musb_config = {
> .multipoint = 1,
Well, that's just going to break USB networking in SPL, which is
supposed to be the only case for this code. It's been a while since I
poked at this particular part of the code and board, is the gadget port
one with a "normal" mini port, or do we need one of the USB A <-> USB A
cables for it? My general recollection of when I did 6815a66ad7430 was
that the device tree should control the ports in U-Boot itself.
--
Tom
-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 659 bytes
Desc: not available
URL: <https://lists.denx.de/pipermail/u-boot/attachments/20230621/4aa3c5fc/attachment.sig>
More information about the U-Boot
mailing list