All of lore.kernel.org
 help / color / mirror / Atom feed
From: Sven Schwermer <sven@svenschwermer.de>
To: u-boot@lists.denx.de
Subject: [U-Boot] [PATCH v2 0/4] usb: Introduce CONFIG_SPL_DM_USB
Date: Sat, 17 Nov 2018 13:20:10 +0100	[thread overview]
Message-ID: <cover.1542457210.git.sven@svenschwermer.de> (raw)
In-Reply-To: <7d84aadf-880f-57ee-acf4-e3df4a067b90@denx.de>

This solves the dependency problem I described in [1].

[1]: http://u-boot.10912.n7.nabble.com/-td347224.html

Version 2:
 * Globally replace CONFIG_DM_USB
 * Split the CONFIG_DM_USB replacement into separate patch
 * Fix am335x_evm build

Sven Schwermer (4):
  usb: Introduce CONFIG_SPL_DM_USB
  usb: s/CONFIG_DM_USB/CONFIG_IS_ENABLED(DM_USB)/
  usb: storage: s/CONFIG_BLK/CONFIG_IS_ENABLED(BLK)/
  usb: am335x_evm: Disable CONFIG_SPL_DM_USB

 common/Makefile                   |  2 +-
 common/usb.c                      | 14 ++++++-------
 common/usb_hub.c                  | 16 +++++++--------
 common/usb_kbd.c                  |  4 ++--
 common/usb_storage.c              | 34 +++++++++++++++----------------
 configs/am335x_evm_defconfig      |  3 ++-
 drivers/usb/Kconfig               |  5 +++++
 drivers/usb/common/Makefile       |  2 +-
 drivers/usb/dwc3/core.c           |  2 +-
 drivers/usb/dwc3/core.h           |  2 +-
 drivers/usb/eth/usb_ether.c       |  2 +-
 drivers/usb/gadget/ci_udc.c       |  2 +-
 drivers/usb/gadget/ether.c        |  8 ++++----
 drivers/usb/host/Makefile         |  5 +++--
 drivers/usb/host/dwc2.c           | 12 +++++------
 drivers/usb/host/ehci-atmel.c     |  2 +-
 drivers/usb/host/ehci-fsl.c       | 12 +++++------
 drivers/usb/host/ehci-hcd.c       | 12 +++++------
 drivers/usb/host/ehci-marvell.c   |  4 ++--
 drivers/usb/host/ehci-mx6.c       |  2 +-
 drivers/usb/host/ehci-pci.c       |  8 ++++----
 drivers/usb/host/ehci-vf.c        |  2 +-
 drivers/usb/host/ohci-hcd.c       | 10 ++++-----
 drivers/usb/host/ohci.h           |  4 ++--
 drivers/usb/host/xhci-dwc3.c      |  2 +-
 drivers/usb/host/xhci-fsl.c       |  4 ++--
 drivers/usb/host/xhci-mem.c       |  6 +++---
 drivers/usb/host/xhci.c           | 12 +++++------
 drivers/usb/host/xhci.h           |  2 +-
 drivers/usb/musb-new/musb_uboot.c | 12 +++++------
 drivers/usb/musb-new/omap2430.c   |  4 ++--
 drivers/usb/musb-new/ti-musb.c    |  4 ++--
 drivers/usb/musb-new/usb-compat.h |  2 +-
 include/usb.h                     | 12 +++++------
 34 files changed, 118 insertions(+), 111 deletions(-)

-- 
2.17.1

  reply	other threads:[~2018-11-17 12:20 UTC|newest]

Thread overview: 60+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2018-11-15  8:20 [U-Boot] [PATCH] usb: Introduce CONFIG_SPL_DM_USB Sven Schwermer
2018-11-15 14:27 ` Marek Vasut
2018-11-15 15:09   ` Sven Schwermer
2018-11-15 15:16     ` Marek Vasut
2018-11-16 12:46       ` Sven Schwermer
2018-11-16 12:46         ` Marek Vasut
2018-11-17 12:20           ` Sven Schwermer [this message]
2018-11-15  7:50             ` [U-Boot] [PATCH v2 2/4] usb: s/CONFIG_DM_USB/CONFIG_IS_ENABLED(DM_USB)/ Sven Schwermer
2018-11-18  3:32               ` Marek Vasut
2018-11-16 11:04             ` [U-Boot] [PATCH v2 4/4] usb: am335x_evm: Disable CONFIG_SPL_DM_USB Sven Schwermer
2018-11-18  3:33               ` Marek Vasut
2018-11-18 14:15                 ` Tom Rini
2018-11-18 19:05                   ` Sven Schwermer
2018-11-18 19:17                     ` Marek Vasut
2018-11-18 20:46                     ` Tom Rini
2018-11-20  9:09                       ` Jean-Jacques Hiblot
2018-11-20  9:19                         ` Jean-Jacques Hiblot
2018-11-17 11:14             ` [U-Boot] [PATCH v2 3/4] usb: storage: s/CONFIG_BLK/CONFIG_IS_ENABLED(BLK)/ Sven Schwermer
2018-11-18  3:32               ` Marek Vasut
2018-11-17 11:37             ` [U-Boot] [PATCH v2 1/4] usb: Introduce CONFIG_SPL_DM_USB Sven Schwermer
2018-11-18  3:31               ` Marek Vasut
2018-11-18 19:08                 ` Sven Schwermer
2018-11-18 19:19                   ` Marek Vasut
2018-11-19 20:33             ` [U-Boot] [PATCH v3 0/5] " Sven Schwermer
2018-11-15  7:50               ` [U-Boot] [PATCH v3 4/5] usb: s/CONFIG_DM_USB/CONFIG_IS_ENABLED(DM_USB)/ Sven Schwermer
2018-11-16 11:04               ` [U-Boot] [PATCH v3 2/5] usb: am335x_evm: Disable CONFIG_SPL_DM_USB Sven Schwermer
2018-11-19 21:18                 ` Marek Vasut
2018-11-20  7:28                   ` Sven Schwermer
2018-11-20 12:43                     ` Marek Vasut
2018-11-20 13:22                       ` Sven Schwermer
2018-11-20 13:31                         ` Marek Vasut
2018-11-20 14:10                           ` Sven Schwermer
2018-11-20 14:14                             ` Marek Vasut
2018-11-20 15:21                               ` Sven Schwermer
2018-11-20 15:47                                 ` Marek Vasut
2018-11-20 17:42                                   ` Sven Schwermer
2018-11-20 17:59                                     ` Marek Vasut
2018-11-20 20:01                                       ` Sven Schwermer
2018-11-20 20:11                                         ` Marek Vasut
2018-11-17 11:14               ` [U-Boot] [PATCH v3 5/5] usb: storage: s/CONFIG_BLK/CONFIG_IS_ENABLED(BLK)/ Sven Schwermer
2018-11-17 11:37               ` [U-Boot] [PATCH v3 1/5] usb: Introduce CONFIG_SPL_DM_USB Sven Schwermer
2018-11-19 21:18                 ` Marek Vasut
2018-11-20  7:25                   ` Sven Schwermer
2018-11-20 12:49                     ` Marek Vasut
2018-11-20 13:27                       ` Sven Schwermer
2018-11-20 13:32                         ` Marek Vasut
2018-11-20 15:30                           ` Sven Schwermer
2018-11-20 15:48                             ` Marek Vasut
2018-11-20 17:31                               ` Sven Schwermer
2018-11-20 17:38                                 ` Marek Vasut
2018-11-20 19:28                                   ` Sven Schwermer
2018-11-20 19:34                                     ` Marek Vasut
2018-11-21  7:43                                       ` [U-Boot] [PATCH v3 RESEND 0/5] " Sven Schwermer
2018-11-21  7:43                                         ` [U-Boot] [PATCH v3 RESEND 1/5] " Sven Schwermer
2018-11-21  7:43                                         ` [U-Boot] [PATCH v3 RESEND 2/5] usb: am335x_evm: Disable CONFIG_SPL_DM_USB Sven Schwermer
2018-11-21  7:43                                         ` [U-Boot] [PATCH v3 RESEND 3/5] usb: Remove CMD_USB dependency for common code Sven Schwermer
2018-11-21  7:43                                         ` [U-Boot] [PATCH v3 RESEND 4/5] usb: s/CONFIG_DM_USB/CONFIG_IS_ENABLED(DM_USB)/ Sven Schwermer
2018-11-21  7:43                                         ` [U-Boot] [PATCH v3 RESEND 5/5] usb: storage: s/CONFIG_BLK/CONFIG_IS_ENABLED(BLK)/ Sven Schwermer
2018-11-21 14:08                                         ` [U-Boot] [PATCH v3 RESEND 0/5] usb: Introduce CONFIG_SPL_DM_USB Marek Vasut
2018-11-19  8:11               ` [U-Boot] [PATCH v3 3/5] usb: Remove CMD_USB dependency for common code Sven Schwermer

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=cover.1542457210.git.sven@svenschwermer.de \
    --to=sven@svenschwermer.de \
    --cc=u-boot@lists.denx.de \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.