Re: [PATCH v2 7/9] usb: dwc3: Make PHY functions depend on CONFIG_USB_DWC3

2020-09-10 Thread Robert Marko
On Thu, Sep 10, 2020 at 3:30 PM Tom Rini wrote: > > On Tue, Sep 01, 2020 at 07:23:00PM +0200, Robert Marko wrote: > > > PHY handling functions should depend also on CONFIG_USB_DWC3 aka DM DWC3 > > version. > > Otherwise when using the non DM version with PHY subsystem enabled there > > will be

Re: [PATCH v2 7/9] usb: dwc3: Make PHY functions depend on CONFIG_USB_DWC3

2020-09-10 Thread Tom Rini
On Tue, Sep 01, 2020 at 07:23:00PM +0200, Robert Marko wrote: > PHY handling functions should depend also on CONFIG_USB_DWC3 aka DM DWC3 > version. > Otherwise when using the non DM version with PHY subsystem enabled there will > be a linking error due to missing dwc3_setup_phy and

[PATCH v2 7/9] usb: dwc3: Make PHY functions depend on CONFIG_USB_DWC3

2020-09-01 Thread Robert Marko
PHY handling functions should depend also on CONFIG_USB_DWC3 aka DM DWC3 version. Otherwise when using the non DM version with PHY subsystem enabled there will be a linking error due to missing dwc3_setup_phy and dwc3_shutdown_phy. Signed-off-by: Robert Marko Cc: Luka Perkov ---