Received: by 2002:a05:6a10:5bc5:0:0:0:0 with SMTP id os5csp2902015pxb; Fri, 5 Nov 2021 06:37:20 -0700 (PDT) X-Google-Smtp-Source: ABdhPJyYzmQvYyy2IqWR+ZIUM1LPy+r9/uyJMk7NRj+uQNh3t7+HCavJgv39CBMsh6FzkhnGXF2D X-Received: by 2002:a6b:6b14:: with SMTP id g20mr3025425ioc.38.1636119440194; Fri, 05 Nov 2021 06:37:20 -0700 (PDT) ARC-Seal: i=1; a=rsa-sha256; t=1636119440; cv=none; d=google.com; s=arc-20160816; b=R9DQTKuLw5JHx5vS52C6RN8Jy5pN0p3yHONdgAUkSIkwNXBggtrfFxjLFfC1zhGH0a 5F3t69qH5K2ZxOhPeNNzuQ3N4poLyf9nSVr986x1N++HgmO2aPgrfO3FIWD4HnRxj5gR g695mOpdVyVJ7r2r1xcs1V1dNxbC5RKlD8OHC3yZTA5jBC9+lWWiWiwUiA/FPYFDZRz3 qpwyCJvdEZEOsPSqM0giHuW7UU5mva5nom7xtEPH9TfExuv6bfRGx9pixUC3fu05BOCJ 4PolE60+yEaQ4dtfmyYQNl7BbaxUK5J3v9Z272nNlVwNhzeM7JzW5/LdVbf9P1Hltw1V EuSQ== 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=USxtu37A9VMVJ1nUrMjdqX8x79z+4qSukVvUhBce+UA=; b=mEpRRrRLxRgcEotShjLqlPoRa0s0lAbtw15iYIzEpuX6Sg6lpRGnFt7bnVVQSqv8yd vZD6m3iAO8AGC+QYGCNn9FBqCXbtcmy35im83pGhpzJ5DUQnjD5lZTHzmc940Op89ANI LCr66iKx5A+6de259FnkNatdBQbQZmmTy0x0mtVbqTtNAzKYXB00oCkTeDVO8BqT02Ce WdS5qRVcmY5Kz/acWc6CaEakLU6G3EXgRAbNpKRTrF2q8z+UuhfiROKPfS3p9GcDChJj JL+cdZnp2V7GHKCVnziB/QzKMdIvNzD3aaRlXtg0sl5TRJaImbsgwxYEle3ricpw00to BcNQ== 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 z17si18051345ioq.55.2021.11.05.06.36.43; Fri, 05 Nov 2021 06:37:20 -0700 (PDT) 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 S230512AbhKENgv (ORCPT + 99 others); Fri, 5 Nov 2021 09:36:51 -0400 Received: from netrider.rowland.org ([192.131.102.5]:52751 "HELO netrider.rowland.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with SMTP id S229924AbhKENgu (ORCPT ); Fri, 5 Nov 2021 09:36:50 -0400 Received: (qmail 1591263 invoked by uid 1000); 5 Nov 2021 09:34:10 -0400 Date: Fri, 5 Nov 2021 09:34:10 -0400 From: Alan Stern To: Greg KH Cc: Haimin Zhang , linux-kernel@vger.kernel.org, linux-usb@vger.kernel.org, Haimin Zhang , TCS Robot Subject: Re: [PATCH 2/2] USB: ehci_brcm_hub_control: replace wIndex-1 with temp Message-ID: <20211105133410.GB1590803@rowland.harvard.edu> References: <20211105083357.29715-1-tcs_kernel@tencent.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.10.1 (2018-07-13) Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Fri, Nov 05, 2021 at 09:52:13AM +0100, Greg KH wrote: > On Fri, Nov 05, 2021 at 04:33:57PM +0800, Haimin Zhang wrote: > > In function `ehci_brcm_hub_control`, like following code, > > it filters out the case where the upper byte of wIndex is nonzero, > > so it need be replaced with temp. > > I do not understand this text, can you try to reword it? > > And you have trailing whitespace. > > And why use `? > > > ``` > > What is this for? Changelog comments are not in markdown format. > > > if ((typeReq == GetPortStatus) && > > (wIndex && wIndex <= ports) && // need to be replaced > > What does this comment mean? > > > ehci->reset_done[wIndex-1] && > > time_after_eq(jiffies, ehci->reset_done[wIndex-1]) && > > (ehci_readl(ehci, status_reg) & PORT_RESUME)) { > > ``` > > > > Signed-off-by: Haimin Zhang > > Reported-by: TCS Robot > > Again, lines need to be in different order, and your from: line is not > correct. > > Also, you need an individual email address, not a group email alias for > your contributions. We work with individuals, not groups. > > > > > --- > > drivers/usb/host/ehci-brcm.c | 6 +++--- > > 1 file changed, 3 insertions(+), 3 deletions(-) > > > > diff --git a/drivers/usb/host/ehci-brcm.c b/drivers/usb/host/ehci-brcm.c > > index a1e3290e5459..efcfca162126 100644 > > --- a/drivers/usb/host/ehci-brcm.c > > +++ b/drivers/usb/host/ehci-brcm.c > > @@ -73,9 +73,9 @@ static int ehci_brcm_hub_control( > > * of RESUME > > */ > > if ((typeReq == GetPortStatus) && > > - (wIndex && wIndex <= ports) && > > - ehci->reset_done[wIndex-1] && > > - time_after_eq(jiffies, ehci->reset_done[wIndex-1]) && > > + (temp < ports) && > > Where did temp come from? Also, as long as this piece of code is being changed, it would be a good idea to get rid of all the unnecessary parentheses. Alan Stern