Received: by 2002:a25:6193:0:0:0:0:0 with SMTP id v141csp2645181ybb; Fri, 27 Mar 2020 09:26:12 -0700 (PDT) X-Google-Smtp-Source: ADFU+vtD9rVaXVEzfbL6kh34wmS2yEcQbmYrw/xzFkTUxdOxoPBI0czpL++YwALTm3jJ+rtGmkM7 X-Received: by 2002:a9d:5e8b:: with SMTP id f11mr11246304otl.110.1585326372739; Fri, 27 Mar 2020 09:26:12 -0700 (PDT) ARC-Seal: i=1; a=rsa-sha256; t=1585326372; cv=none; d=google.com; s=arc-20160816; b=mbfOWVcddO+26Up2pG580W40q8ad1cc3Tgg26Di4s/Zo0FQ449VGzZhojSaPbJwCv+ bXec76FkypsDNflJaRFzHPI1pFBSbTjkqgAQ+PC3SEjeMfDS50DMQu4UTKmk5cqJhDDT vyaKSKgj2Zh8uPBNyQ/tPaiew0H/H1Ie8oVqTtT7BBWESFFoooK4bqE6/+L82wRUl1Qs pvK5+triHY8N685CG+tI4RrR2d/HQlLbi+St8CGzjwzcUNV1QYlEgPAALOH/k2qwfVR+ hJNSekFwrLZ7f5KoFAbNh6+IVFBOHZlMPJXdZ/pNCIiylP3BPHCxW/Gqy1aERGwK8d8e N/Ag== 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=s0AQfW4T476rVCEENCLPmUo+Joxe9BC+JSF/PIx6qmk=; b=Ht3N6OQm8im7FqE7U4MQql54ikgu5C+XWRHArnv5TrGhbGG3e0/M8b5lsGEQ0RT7Bj cbSkirTVKSxud/Z8WePg13aeDpCJsygE5I9OG++7dbzaVYqMm4KJ5mAIEwpZfrtoip/W Vu031LbjiTgiPmxxN5nkwpfIO+nqUNy6RjMAvLQK59YvFP7AwxIoblXrWeSjc2EAaytH Nljh9QENJ8ZyCrumBGFII/FNign/L9ZQL/VBCn0bizWcnRsFLN0HpvlL2NAKXZLyH3wo CvzcZa+DTcJaTeTNTGw03KGKplgU9ZRlGUIardLFnd2T8+jZMCeP0be2kaSlSG2yTXQI HfFQ== 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 v18si2849273oth.1.2020.03.27.09.25.59; Fri, 27 Mar 2020 09:26:12 -0700 (PDT) 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 S1727796AbgC0QZf (ORCPT + 99 others); Fri, 27 Mar 2020 12:25:35 -0400 Received: from netrider.rowland.org ([192.131.102.5]:43553 "HELO netrider.rowland.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with SMTP id S1727705AbgC0QZf (ORCPT ); Fri, 27 Mar 2020 12:25:35 -0400 Received: (qmail 16088 invoked by uid 500); 27 Mar 2020 12:25:34 -0400 Received: from localhost (sendmail-bs@127.0.0.1) by localhost with SMTP; 27 Mar 2020 12:25:34 -0400 Date: Fri, 27 Mar 2020 12:25:34 -0400 (EDT) From: Alan Stern X-X-Sender: stern@netrider.rowland.org To: vladimir.stankovic@displaylink.com cc: gregkh@linuxfoundation.org, , , Subject: Re: [PATCH v4 1/8] usb: Add MA-USB Host kernel module In-Reply-To: <20200327152614.26833-2-vladimir.stankovic@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 Fri, 27 Mar 2020 vladimir.stankovic@displaylink.com 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 > 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 It would be an excellent idea to change this title to: MA (MEDIA-AGNOSTIC) USB HOST DRIVER Otherwise to me it looks like the Massachusetts USB HOST DRIVER, since MA is the 2-letter abbreviation for the state where I live. A two-letter acronym is just too generic; you mustn't expect people to understand it. > +M: Vladimir Stankovic > +L: mausb-host-devel@displaylink.com > +W: https://www.displaylink.com > +S: Maintained > +F: drivers/usb/mausb_host/* > + > --- /dev/null > +++ b/drivers/usb/mausb_host/Kconfig > @@ -0,0 +1,14 @@ > +# SPDX-License-Identifier: GPL-2.0 > +# > +# Kernel configuration file for MA-USB Host driver. > +# > +# Copyright (c) 2019 - 2020 DisplayLink (UK) Ltd. > +# > + > +config HOST_MAUSB > + tristate "MA-USB Host Driver" > + depends on USB=y > + default n No need for this line; n is always the default setting unless you specify otherwise. > + help > + This is a MA-USB Host driver which enables host communication > + via MA-USB protocol stack. And I insist that you insert "Media Agnostic" in here somewhere, either in the "tristate" line or in the help. Without this, people trying to configure their kernels will have no idea whether or not they should enable the setting because they won't know what MA-USB is. It also wouldn't hurt to mention in the help text that if the driver is built as a module, the name of the module will be "mausb_host". Alan Stern