mbox series

[U-Boot,v1,0/3] Fixes for the DWC3-generic glue driver

Message ID 20190705073358.24986-1-jjhiblot@ti.com
Headers show
Series Fixes for the DWC3-generic glue driver | expand

Message

Jean-Jacques Hiblot July 5, 2019, 7:33 a.m. UTC
This series fixes the current breakage of the DWC3 generic driver

Those patches were part of a larger series that also fixes the K2
platforms. However since the other series will not make it in this
release, sending in a much smaller one.

JJ


Jean-Jacques Hiblot (3):
  usb: dwc3-generic: remove dm_scan_fdt_dev() from the remove() callback
  dm: Add a No-op uclass
  usb: dwc3: Use UCLASS_NOP instead of UCLASS_MISC for the DWC3 generic
    glue

 arch/sandbox/dts/test.dts       | 12 ++++++
 drivers/core/uclass.c           |  5 +++
 drivers/usb/dwc3/dwc3-generic.c |  4 +-
 include/dm/uclass-id.h          |  1 +
 test/dm/Makefile                |  1 +
 test/dm/nop.c                   | 73 +++++++++++++++++++++++++++++++++
 6 files changed, 94 insertions(+), 2 deletions(-)
 create mode 100644 test/dm/nop.c

Comments

Jean-Jacques Hiblot July 5, 2019, 7:43 a.m. UTC | #1
Marek,

Ideally this series should be merged in u-boot-usb/master.

JJ


On 05/07/2019 09:33, Jean-Jacques Hiblot wrote:
> This series fixes the current breakage of the DWC3 generic driver
>
> Those patches were part of a larger series that also fixes the K2
> platforms. However since the other series will not make it in this
> release, sending in a much smaller one.
>
> JJ
>
>
> Jean-Jacques Hiblot (3):
>    usb: dwc3-generic: remove dm_scan_fdt_dev() from the remove() callback
>    dm: Add a No-op uclass
>    usb: dwc3: Use UCLASS_NOP instead of UCLASS_MISC for the DWC3 generic
>      glue
>
>   arch/sandbox/dts/test.dts       | 12 ++++++
>   drivers/core/uclass.c           |  5 +++
>   drivers/usb/dwc3/dwc3-generic.c |  4 +-
>   include/dm/uclass-id.h          |  1 +
>   test/dm/Makefile                |  1 +
>   test/dm/nop.c                   | 73 +++++++++++++++++++++++++++++++++
>   6 files changed, 94 insertions(+), 2 deletions(-)
>   create mode 100644 test/dm/nop.c
>
Marek Vasut July 5, 2019, 12:16 p.m. UTC | #2
On 7/5/19 9:43 AM, Jean-Jacques Hiblot wrote:
> Marek,
> 
> Ideally this series should be merged in u-boot-usb/master.

I was hoping for something which doesn't add uclasses, but maybe that's
not easily possible? So, I'll apply this and we'll see.
Jean-Jacques Hiblot July 5, 2019, 3:14 p.m. UTC | #3
On 05/07/2019 14:16, Marek Vasut wrote:
> On 7/5/19 9:43 AM, Jean-Jacques Hiblot wrote:
>> Marek,
>>
>> Ideally this series should be merged in u-boot-usb/master.
> I was hoping for something which doesn't add uclasses, but maybe that's
> not easily possible? So, I'll apply this and we'll see.

unfortunately not. That is the core of the fix.