Received: by 2002:a05:6a10:f347:0:0:0:0 with SMTP id d7csp1343707pxu; Thu, 17 Dec 2020 07:53:44 -0800 (PST) X-Google-Smtp-Source: ABdhPJxVE5+4UH9b5iQAurLxxGlIM8amK/aWEIGPm77QihCGSDIGvKpezzKPGWaa1P1SHVO3A9em X-Received: by 2002:a17:906:5952:: with SMTP id g18mr13851918ejr.506.1608220424731; Thu, 17 Dec 2020 07:53:44 -0800 (PST) ARC-Seal: i=1; a=rsa-sha256; t=1608220424; cv=none; d=google.com; s=arc-20160816; b=IFmWani4mMf34gWzEmFSDfdPuScR7YcalRpF6uELZH0s/1Fk6hUufLZ4KmdBGRivng hT/eXLngcbqPXVsZZk+9Lp9KGo8+9A87n6rkoP+tbkt7DqEYkCuv+oogP8yDORZfGq7q DV+AtX/YQAPlnWrvsMGRotYsn+lYT+aSkCrZlpRmNWouN2lUOCtZbliN7jmt22/ksIoc Ll/Uq4mAjHrk7YQ2ZfbAFtda4DNy+Gr1Sthfn+UjYXzX67ySsC13B7epdDA3fV82YbG9 ViM395IUzwH0f7BpCiCh8v3gB8Vp1rsv7YrZRX7M0tAa+C6dHFuPaE5xdzFXysH3Mxw7 edmw== ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; h=list-id:precedence:user-agent:in-reply-to:content-disposition :mime-version:references:message-id:subject:cc:to:from:date; bh=2DeU+F5oTZXTBL8a2ireph+wM4v4vDInDKYyWbxAa4U=; b=DqKlQ3TDp82+jtayUAr9irWOyinZW6x/KhYID/LM3TMOdg1X7YML9kH0Eu8mAU42Q2 Ct10Caug4QY3KE3ZV7LEWT4gCGr3Q+02oXTPOij1nbx7RN2xUeGatuB9DF0GmCEab/T+ E3TCxNzy2O/9XyxERmBl5xWhc1n//Gt4WZXEKJ7rt+WukQVWqxPdhVSbkerwwlbvaKND Kw5a9DFbRP1lPbvI8/AlLf454rXbN+g82FqeJSYPxVSEGvV70M7bhG22cM+5bAHAWQ11 gdj4K3FPV0IFxKiGtkZmDlKTWWZqx2Xr9qCCaiLaeRbL5P0YUqMnk8z8kwJQklHhRTnH S04A== ARC-Authentication-Results: i=1; mx.google.com; spf=pass (google.com: domain of linux-kernel-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Return-Path: Received: from vger.kernel.org (vger.kernel.org. [23.128.96.18]) by mx.google.com with ESMTP id qu25si2827636ejb.146.2020.12.17.07.53.19; Thu, 17 Dec 2020 07:53:44 -0800 (PST) Received-SPF: pass (google.com: domain of linux-kernel-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) client-ip=23.128.96.18; Authentication-Results: mx.google.com; spf=pass (google.com: domain of linux-kernel-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1728777AbgLQPup (ORCPT + 99 others); Thu, 17 Dec 2020 10:50:45 -0500 Received: from netrider.rowland.org ([192.131.102.5]:43903 "HELO netrider.rowland.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with SMTP id S1727160AbgLQPuo (ORCPT ); Thu, 17 Dec 2020 10:50:44 -0500 Received: (qmail 280741 invoked by uid 1000); 17 Dec 2020 10:50:03 -0500 Date: Thu, 17 Dec 2020 10:50:03 -0500 From: Alan Stern To: Dmitry Osipenko Cc: Thierry Reding , Jonathan Hunter , Peter Chen , Greg Kroah-Hartman , Felipe Balbi , Matt Merhar , Nicolas Chauvet , Peter Geis , Ion Agorria , linux-tegra@vger.kernel.org, linux-usb@vger.kernel.org, linux-kernel@vger.kernel.org Subject: Re: [PATCH v2 7/8] usb: host: ehci-tegra: Remove the driver Message-ID: <20201217155003.GA280158@rowland.harvard.edu> References: <20201217094007.19336-1-digetx@gmail.com> <20201217094007.19336-8-digetx@gmail.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20201217094007.19336-8-digetx@gmail.com> User-Agent: Mutt/1.10.1 (2018-07-13) Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Thu, Dec 17, 2020 at 12:40:06PM +0300, Dmitry Osipenko wrote: > The ChipIdea driver now provides USB2 host mode support for NVIDIA Tegra > SoCs. The ehci-tegra driver is obsolete now, remove it and redirect the > older Kconfig entry to the CI driver. > > Tested-by: Matt Merhar > Tested-by: Nicolas Chauvet > Tested-by: Peter Geis > Tested-by: Ion Agorria > Signed-off-by: Dmitry Osipenko > --- > drivers/usb/host/Kconfig | 8 +- > drivers/usb/host/Makefile | 1 - > drivers/usb/host/ehci-tegra.c | 604 ---------------------------------- > 3 files changed, 6 insertions(+), 607 deletions(-) > delete mode 100644 drivers/usb/host/ehci-tegra.c > > diff --git a/drivers/usb/host/Kconfig b/drivers/usb/host/Kconfig > index 31e59309da1f..318315602337 100644 > --- a/drivers/usb/host/Kconfig > +++ b/drivers/usb/host/Kconfig > @@ -269,9 +269,13 @@ config USB_EHCI_HCD_AT91 > config USB_EHCI_TEGRA > tristate "NVIDIA Tegra HCD support" > depends on ARCH_TEGRA > - select USB_EHCI_ROOT_HUB_TT > - select USB_TEGRA_PHY > + select USB_CHIPIDEA > + select USB_CHIPIDEA_HOST > + select USB_CHIPIDEA_TEGRA > help > + This option is deprecated now and the driver was removed, use > + USB_CHIPIDEA_TEGRA instead. > + > This driver enables support for the internal USB Host Controllers > found in NVIDIA Tegra SoCs. The controllers are EHCI compliant. It doesn't really make sense to say "... the driver was removed..." and then in the next paragraph say "This driver enables...". You should change the second paragraph to begin: "Enable support for...". That's a minor matter, though, and you can easily fix it in the next patch version. Everything else is okay. Acked-by: Alan Stern Alan Stern