mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-11 07:34:31 +00:00
usb: dwc3-meson-g12a: Select PHY instead of imply PHY
Imply means you can turn off the option and expect things to work - "it's a good idea to have X enabled" is when to use imply - "you must have X for Y to work" is when to use select Use "select" here. Signed-off-by: Marek Vasut <marex@denx.de> Reviewed-by: Mattijs Korpershoek <mkorpershoek@baylibre.com>
This commit is contained in:
parent
49cba67852
commit
e61eaee91c
1 changed files with 2 additions and 2 deletions
|
@ -40,7 +40,7 @@ config SPL_USB_DWC3_GENERIC
|
|||
config USB_DWC3_MESON_G12A
|
||||
bool "Amlogic Meson G12A USB wrapper"
|
||||
depends on DM_USB && USB_DWC3 && ARCH_MESON
|
||||
imply PHY
|
||||
select PHY
|
||||
help
|
||||
Select this for Amlogic Meson G12A Platforms.
|
||||
This wrapper supports Host and Peripheral operation modes.
|
||||
|
@ -48,7 +48,7 @@ config USB_DWC3_MESON_G12A
|
|||
config USB_DWC3_MESON_GXL
|
||||
bool "Amlogic Meson GXL USB wrapper"
|
||||
depends on DM_USB && USB_DWC3 && ARCH_MESON
|
||||
imply PHY
|
||||
select PHY
|
||||
help
|
||||
Select this for Amlogic Meson GXL and GXM Platforms.
|
||||
This wrapper supports Host and Peripheral operation modes.
|
||||
|
|
Loading…
Reference in a new issue