Received: by 2002:a25:1506:0:0:0:0:0 with SMTP id 6csp5003763ybv; Wed, 26 Feb 2020 06:48:49 -0800 (PST) X-Google-Smtp-Source: APXvYqw34mfm2dZ+ohVgiZJK0XqROkJXvNs9HVhZMrOBCYYml0RSPShKiGc4P+DVZtMiFeKCqo42 X-Received: by 2002:aca:b703:: with SMTP id h3mr3398477oif.148.1582728529771; Wed, 26 Feb 2020 06:48:49 -0800 (PST) ARC-Seal: i=1; a=rsa-sha256; t=1582728529; cv=none; d=google.com; s=arc-20160816; b=Y0oQnJuOMkmtqia6QgEYlfjWIdH4Slg9IeDjJcW5aiGJxMRXxdxTH5W5yB0RwJJiwv qnlKczhXBQ9ObHnYDbll8t4cwxYlw1N2Z0+c3S+Naa0+mdaIkEZ67URQJUjIJvC7RgA9 EugU0s503YI2LNdY7v/2DN1p2NWHtdhBjP6gcpqRvh+LacwSWn1+Uux+hcTfbAX97eaj lQ0DBhyxC76la6jPPmj77e7Xj+hjwzyfttXk5jZBMfwnazJTK8IfaXSRGprgI3lgPXYx 4oZDdRWZ1n8L1pSBkMq6hNFQAvCFxLVCGTmXk3dqVzh7cUbf0MY0xNjs8zeDGpDtDqIT 41bw== ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; h=list-id:precedence:sender:mime-version:message-id:in-reply-to :subject:cc:to:from:date; bh=5uB0WyIXNLidg7xFpZYg+BAd5latuKhcSzwghebnvQk=; b=DvFovMsNPkUW0riID6C9l2jBFGN41lrH0YoNYOHFqJqTSx9VsS8h3m2UeoWAmqMfQL hAPUhVxxFvyM2gT3kHfy3XZWvIegotD2dejggaKv5582w0HdozJypdFFZbjUL2o0SkkP hjMxNpzu9Zc0K1POweqNY6pnHwWhKt8nWn0OuBmyl45Cr/150CIK0uM3BB/Ob78m5VX8 QDPdnVgqXmheifxohmBQBfbRSxfcGR/EKzasLJ6Y8KnDXzTGmtWFUJPTKusKFq5j+yhF vVNV2juQoyhcVMKFpXiLUWORHLbuCYoaKoMTY+S01WbrrSqTs3sLerYQpmM2PGU6Avi2 cDCQ== ARC-Authentication-Results: i=1; mx.google.com; spf=pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Return-Path: Received: from vger.kernel.org (vger.kernel.org. [209.132.180.67]) by mx.google.com with ESMTP id p186si1369280oih.172.2020.02.26.06.48.37; Wed, 26 Feb 2020 06:48:49 -0800 (PST) Received-SPF: pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) client-ip=209.132.180.67; Authentication-Results: mx.google.com; spf=pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1727741AbgBZOsH (ORCPT + 99 others); Wed, 26 Feb 2020 09:48:07 -0500 Received: from netrider.rowland.org ([192.131.102.5]:36607 "HELO netrider.rowland.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with SMTP id S1727584AbgBZOsG (ORCPT ); Wed, 26 Feb 2020 09:48:06 -0500 Received: (qmail 4914 invoked by uid 500); 26 Feb 2020 09:48:05 -0500 Received: from localhost (sendmail-bs@127.0.0.1) by localhost with SMTP; 26 Feb 2020 09:48:05 -0500 Date: Wed, 26 Feb 2020 09:48:05 -0500 (EST) From: Alan Stern X-X-Sender: stern@netrider.rowland.org To: Vladimir Stankovic cc: Greg KH , linux-kernel , linux-usb , mausb-host-devel Subject: Re: [PATCH v2 1/8] usb: Add MA-USB Host kernel module In-Reply-To: <0dbf7da8-a0af-8750-6e91-c6d29f7e1a72@displaylink.com> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Wed, 26 Feb 2020, 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 | 13 +++++ > drivers/usb/mausb_host/mausb_host.c | 90 +++++++++++++++++++++++++++++ > drivers/usb/mausb_host/utils.c | 85 +++++++++++++++++++++++++++ > drivers/usb/mausb_host/utils.h | 40 +++++++++++++ > 8 files changed, 253 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_host.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 8f27f40d22bb..6088f9aa640a 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/* > + You should mention somewhere (certainly in the patch description and in MAINTAINERS, maybe other places as well) that MA is an abbreviation for Media-Agnostic. Otherwise people will wonder what on earth it is. Alan Stern