From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-6.8 required=3.0 tests=DKIMWL_WL_HIGH,DKIM_SIGNED, DKIM_VALID,HEADER_FROM_DIFFERENT_DOMAINS,INCLUDES_PATCH,MAILING_LIST_MULTI, SIGNED_OFF_BY,SPF_HELO_NONE,SPF_PASS autolearn=ham autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id DDA32C2BB1D for ; Thu, 12 Mar 2020 15:20:42 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id AE9312067C for ; Thu, 12 Mar 2020 15:20:42 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1584026442; bh=D146BfKMJlSPyUF2Jrja5/Ivt/KIvNV5UiPRFuBJbSc=; h=Date:From:To:Cc:Subject:References:In-Reply-To:List-ID:From; b=zLDc5TSUitf+bCMwS2uw2SNCc87sFdnhvdMiWFXVjEnh36Ts73UTlYIaAeMMhQU7S nN/x9lddhplPDb4jR3Np8B0ln36rhZIuhhXDrboYBZCiMcbkECNuGOaJgw+a8FiPqP LIEDrEHNB4QkpB9T3tiYxiiW9Mf5ElDyWB1fjrDA= Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1728115AbgCLPUl (ORCPT ); Thu, 12 Mar 2020 11:20:41 -0400 Received: from mail.kernel.org ([198.145.29.99]:47288 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1727916AbgCLPUl (ORCPT ); Thu, 12 Mar 2020 11:20:41 -0400 Received: from localhost (83-86-89-107.cable.dynamic.v4.ziggo.nl [83.86.89.107]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPSA id 22F3620674; Thu, 12 Mar 2020 15:20:39 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1584026440; bh=D146BfKMJlSPyUF2Jrja5/Ivt/KIvNV5UiPRFuBJbSc=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=h8IfcYq9E1F+ZmlA075iY3AxPX5xBVSp6iUNyWfnERx1HbDvs7i3XODVjK+QMKVq8 klSb7q20hTO5SMYuTqg5gTDtH8X/uwKnWlMaocFie08d0SaIFhEyBWOneLBuwZMV/N o/7LjogcalPOxJ+i26TJWim1+qyJKXreZdLqZY4s= Date: Thu, 12 Mar 2020 16:20:37 +0100 From: Greg KH To: Vladimir Stankovic Cc: linux-kernel , linux-usb , mausb-host-devel Subject: Re: [PATCH v3 1/8] usb: Add MA-USB Host kernel module Message-ID: <20200312152037.GA383349@kroah.com> References: MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Thu, Mar 12, 2020 at 03:42:30PM +0100, Vladimir Stankovic wrote: > Added utility macros, kernel device creation and cleanup, functions for > handling log formatting and a placeholder module for MA-USB Host device > driver. > > Signed-off-by: Vladimir Stankovic > --- > MAINTAINERS | 7 +++ > drivers/usb/Kconfig | 2 + > drivers/usb/Makefile | 2 + > drivers/usb/mausb_host/Kconfig | 14 +++++ > drivers/usb/mausb_host/Makefile | 12 ++++ > drivers/usb/mausb_host/mausb_core.c | 90 +++++++++++++++++++++++++++++ > drivers/usb/mausb_host/utils.c | 85 +++++++++++++++++++++++++++ > drivers/usb/mausb_host/utils.h | 40 +++++++++++++ > 8 files changed, 252 insertions(+) > create mode 100644 drivers/usb/mausb_host/Kconfig > create mode 100644 drivers/usb/mausb_host/Makefile > create mode 100644 drivers/usb/mausb_host/mausb_core.c > create mode 100644 drivers/usb/mausb_host/utils.c > create mode 100644 drivers/usb/mausb_host/utils.h > > diff --git a/MAINTAINERS b/MAINTAINERS > index 235ab38ed478..12aac44196d7 100644 > --- a/MAINTAINERS > +++ b/MAINTAINERS > @@ -10226,6 +10226,13 @@ W: https://linuxtv.org > S: Maintained > F: drivers/media/radio/radio-maxiradio* > +MA USB HOST DRIVER > +M: Vladimir Stankovic > +L: mausb-host-devel@displaylink.com > +W: https://www.displaylink.com > +S: Maintained > +F: drivers/usb/mausb_host/* > + > MCAN MMIO DEVICE DRIVER > M: Dan Murphy > M: Sriram Dash Does that patch look correct? Does this apply? Something is odd here :( > diff --git a/drivers/usb/Kconfig b/drivers/usb/Kconfig > index 275568abc670..4e92f1fa0fa5 100644 > --- a/drivers/usb/Kconfig > +++ b/drivers/usb/Kconfig > @@ -164,6 +164,8 @@ source "drivers/usb/misc/Kconfig" > source "drivers/usb/atm/Kconfig" > +source "drivers/usb/mausb_host/Kconfig" > + > endif # USB > source "drivers/usb/phy/Kconfig" Yeah, something is really wrong with your email client :( Can you use 'git send-email' to send all of these out so they do not get corrupted? That will also fix the lack of email threading which this series still has as well. thanks, greg k-h