From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S933218AbdBHI66 (ORCPT ); Wed, 8 Feb 2017 03:58:58 -0500 Received: from mail2.skidata.com ([91.230.2.91]:4539 "EHLO mail2.skidata.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S932065AbdBHI64 (ORCPT ); Wed, 8 Feb 2017 03:58:56 -0500 X-IronPort-Anti-Spam-Filtered: true X-IronPort-Anti-Spam-Result: =?us-ascii?q?A2FCBABu3ZpY/0oKEKxdGwEBAQMBAQEJA?= =?us-ascii?q?QEBhDIqXwefSR8QkxeCD4FJQyqFeAKDIRYBAgEBAQEBAQEDgQeCWz0KMgEBAQE?= =?us-ascii?q?BAQEBAQEBAQEBARoCCEgCGAEBAQIBAXkQCw0IAy5XBg0BBQICiWgWshgmAosrA?= =?us-ascii?q?QEBAQEBAQMBAQEBASMJAYInhBuCBQiCYoE8g2SFGQWPQ4wtgX+Ebo0ghReDLRe?= =?us-ascii?q?GL5MSJgSBLA8QDwQdhSKBcnQBh3GBDAEBAQ?= X-IPAS-Result: =?us-ascii?q?A2FCBABu3ZpY/0oKEKxdGwEBAQMBAQEJAQEBhDIqXwefSR8?= =?us-ascii?q?QkxeCD4FJQyqFeAKDIRYBAgEBAQEBAQEDgQeCWz0KMgEBAQEBAQEBAQEBAQEBA?= =?us-ascii?q?RoCCEgCGAEBAQIBAXkQCw0IAy5XBg0BBQICiWgWshgmAosrAQEBAQEBAQMBAQE?= =?us-ascii?q?BASMJAYInhBuCBQiCYoE8g2SFGQWPQ4wtgX+Ebo0ghReDLReGL5MSJgSBLA8QD?= =?us-ascii?q?wQdhSKBcnQBh3GBDAEBAQ?= X-IronPort-AV: E=Sophos;i="5.33,346,1477954800"; d="scan'208";a="370587" Subject: Re: [PATCH v4] usb: misc: add USB251xB/xBi Hi-Speed Hub Controller Driver To: References: <1486543976-28006-1-git-send-email-richard.leitner@skidata.com> CC: , , , , , , , From: Richard Leitner Message-ID: Date: Wed, 8 Feb 2017 09:58:48 +0100 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:45.0) Gecko/20100101 Icedove/45.6.0 MIME-Version: 1.0 In-Reply-To: <1486543976-28006-1-git-send-email-richard.leitner@skidata.com> Content-Type: text/plain; charset="windows-1252" Content-Transfer-Encoding: 7bit X-Originating-IP: [172.16.60.30] X-ClientProxiedBy: sdex1srv.skidata.net (172.16.10.92) To sdex1srv.skidata.net (172.16.10.92) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On 02/08/2017 09:52 AM, Richard Leitner wrote: > From: Richard Leitner Please drop/ignore that "From". This patch is from: Richard Leitner > > This patch adds a driver for configuration of the Microchip USB251xB/xBi > USB 2.0 hub controller series with USB 2.0 upstream connectivity, SMBus > configuration interface and two to four USB 2.0 downstream ports. > > Furthermore add myself as a maintainer for this driver. > > The datasheet can be found at the manufacturers website, see [1]. All > device-tree exposed configuration features have been tested on a i.MX6 > platform with a USB2512B hub. > > [1] http://ww1.microchip.com/downloads/en/DeviceDoc/00001692C.pdf > > Signed-off-by: Richard Leitner > --- > CHANGES v4: > - use utf8s_to_utf16s() instead of ascii2utf16le() > - remove ascii2utf16le() in lib/string.c again > - remove changes in drivers/usb/core/hcd.c again > (I will post a separate patch for using utf8s_to_utf16s() > in there too) > > CHANGES v3: > - move ascii2utf16le() to lib/string.c and also use it also for > ascii2desc in drivers/usb/core/hcd.c > - remove platform data support from usb251xb driver > > CHANGES v2: > - fix max-{b,s}p-current property name > - add descriptor string handling from platform_data > - fix non-dt handling > --- > Documentation/devicetree/bindings/usb/usb251xb.txt | 83 +++ > MAINTAINERS | 8 + > drivers/usb/misc/Kconfig | 9 + > drivers/usb/misc/Makefile | 1 + > drivers/usb/misc/usb251xb.c | 674 +++++++++++++++++++++ > 5 files changed, 775 insertions(+) > create mode 100644 Documentation/devicetree/bindings/usb/usb251xb.txt > create mode 100644 drivers/usb/misc/usb251xb.c