From patchwork Thu Jun 20 05:58:23 2019 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Harry Pan X-Patchwork-Id: 11005937 Return-Path: Received: from mail.wl.linuxfoundation.org (pdx-wl-mail.web.codeaurora.org [172.30.200.125]) by pdx-korg-patchwork-2.web.codeaurora.org (Postfix) with ESMTP id B8CD01580 for ; Thu, 20 Jun 2019 06:09:35 +0000 (UTC) Received: from mail.wl.linuxfoundation.org (localhost [127.0.0.1]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id A85FD28415 for ; Thu, 20 Jun 2019 06:09:35 +0000 (UTC) Received: by mail.wl.linuxfoundation.org (Postfix, from userid 486) id 99FD12844E; Thu, 20 Jun 2019 06:09:35 +0000 (UTC) X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on pdx-wl-mail.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-7.9 required=2.0 tests=BAYES_00,MAILING_LIST_MULTI, RCVD_IN_DNSWL_HI autolearn=ham version=3.3.1 Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id 7414328415 for ; Thu, 20 Jun 2019 06:09:34 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1726234AbfFTGJe (ORCPT ); Thu, 20 Jun 2019 02:09:34 -0400 Received: from [192.198.146.187] ([192.198.146.187]:54689 "EHLO E6440.gar.corp.intel.com" rhost-flags-FAIL-FAIL-OK-FAIL) by vger.kernel.org with ESMTP id S1725953AbfFTGJd (ORCPT ); Thu, 20 Jun 2019 02:09:33 -0400 X-Greylist: delayed 641 seconds by postgrey-1.27 at vger.kernel.org; Thu, 20 Jun 2019 02:09:32 EDT Received: from E6440.gar.corp.intel.com (localhost [127.0.0.1]) by E6440.gar.corp.intel.com (Postfix) with ESMTP id 1CAEDC1C9B; Thu, 20 Jun 2019 13:58:25 +0800 (CST) From: Harry Pan To: LKML Cc: gs0622@gmail.com, Harry Pan , Kai-Heng Feng , Alan Stern , Dennis Wassenberg , Nicolas Saenz Julienne , Bin Liu , linux-usb@vger.kernel.org, Jon Flatley , Greg Kroah-Hartman , Colin Ian King , Mathias Nyman Subject: [PATCH] USB: core: correct a spelling mistake in the comment Date: Thu, 20 Jun 2019 13:58:23 +0800 Message-Id: <20190620055823.15735-1-harry.pan@intel.com> X-Mailer: git-send-email 2.20.1 MIME-Version: 1.0 Sender: linux-usb-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-usb@vger.kernel.org X-Virus-Scanned: ClamAV using ClamSMTP Fix a spelling typo in the function comment. Signed-off-by: Harry Pan --- drivers/usb/core/hub.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/usb/core/hub.c b/drivers/usb/core/hub.c index 8d4631c81b9f..1988f8f88f75 100644 --- a/drivers/usb/core/hub.c +++ b/drivers/usb/core/hub.c @@ -2719,7 +2719,7 @@ static bool use_new_scheme(struct usb_device *udev, int retry, } /* Is a USB 3.0 port in the Inactive or Compliance Mode state? - * Port worm reset is required to recover + * Port warm reset is required to recover */ static bool hub_port_warm_reset_required(struct usb_hub *hub, int port1, u16 portstatus)