From mboxrd@z Thu Jan 1 00:00:00 1970 From: Marek Vasut Date: Wed, 6 Jan 2016 21:49:42 +0100 Subject: [U-Boot] [PATCH v1 05/16] usb: ulpi: Add Kconfig options for ULPI In-Reply-To: <1452104488-5502-6-git-send-email-mateusz.kulikowski@gmail.com> References: <1452104488-5502-1-git-send-email-mateusz.kulikowski@gmail.com> <1452104488-5502-6-git-send-email-mateusz.kulikowski@gmail.com> Message-ID: <201601062149.42745.marex@denx.de> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: u-boot@lists.denx.de On Wednesday, January 06, 2016 at 07:21:17 PM, Mateusz Kulikowski wrote: > The following options can be now enabled via defconfig: > - CONFIG_USB_ULPI > - CONFIG_USB_ULPI_VIEWPORT > - CONFIG_USB_ULPI_VIEWPORT_OMAP > > Signed-off-by: Mateusz Kulikowski > --- > > Changes in v1: New patch > > drivers/usb/Kconfig | 2 ++ > drivers/usb/ulpi/Kconfig | 10 ++++++++++ > 2 files changed, 12 insertions(+) > create mode 100644 drivers/usb/ulpi/Kconfig > > diff --git a/drivers/usb/Kconfig b/drivers/usb/Kconfig > index abb06fc..57b99f2 100644 > --- a/drivers/usb/Kconfig > +++ b/drivers/usb/Kconfig > @@ -53,6 +53,8 @@ source "drivers/usb/musb-new/Kconfig" > > source "drivers/usb/emul/Kconfig" > > +source "drivers/usb/ulpi/Kconfig" > + > comment "USB peripherals" > > config USB_STORAGE > diff --git a/drivers/usb/ulpi/Kconfig b/drivers/usb/ulpi/Kconfig > new file mode 100644 > index 0000000..f3210bc > --- /dev/null > +++ b/drivers/usb/ulpi/Kconfig > @@ -0,0 +1,10 @@ > +comment "ULPI drivers" > + > +config USB_ULPI > + bool > + > +config USB_ULPI_VIEWPORT > + bool > + > +config USB_ULPI_VIEWPORT_OMAP > + bool Description of these options is missing. Best regards, Marek Vasut