Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1754747AbbLJJPs (ORCPT ); Thu, 10 Dec 2015 04:15:48 -0500 Received: from mail-wm0-f41.google.com ([74.125.82.41]:38461 "EHLO mail-wm0-f41.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1754674AbbLJJPo (ORCPT ); Thu, 10 Dec 2015 04:15:44 -0500 Date: Thu, 10 Dec 2015 10:15:33 +0100 From: Peter Senna Tschudin To: "Geyslan G. Bem" Cc: Alan Stern , Greg Kroah-Hartman , linux-usb@vger.kernel.org, linux-kernel@vger.kernel.org Subject: Re: [PATCH 1/9v2] usb: host: ehci.h: remove space before comma Message-ID: <20151210091533.GA4013@toshiba-peter.rsr.lip6.fr> References: <1449700359-14262-1-git-send-email-geyslan@gmail.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1449700359-14262-1-git-send-email-geyslan@gmail.com> User-Agent: Mutt/1.5.24 (2015-08-30) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1854 Lines: 46 On Wed, Dec 09, 2015 at 07:32:30PM -0300, Geyslan G. Bem wrote: > Get rid of spaces before comma. > > Caught by checkpatch: "ERROR: space prohibited before that ','" > > Signed-off-by: Geyslan G. Bem > --- It is a good idea to include here (after the ---) what changed from V1. Other than that: Acked-by: Peter Senna Tschudin Not related to this patch, I did not receive patch 9/9v2. > drivers/usb/host/ehci.h | 8 ++++---- > 1 file changed, 4 insertions(+), 4 deletions(-) > > diff --git a/drivers/usb/host/ehci.h b/drivers/usb/host/ehci.h > index ec61aed..6a36ef4 100644 > --- a/drivers/usb/host/ehci.h > +++ b/drivers/usb/host/ehci.h > @@ -852,13 +852,13 @@ static inline u32 hc32_to_cpup (const struct ehci_hcd *ehci, const __hc32 *x) > /*-------------------------------------------------------------------------*/ > > #define ehci_dbg(ehci, fmt, args...) \ > - dev_dbg(ehci_to_hcd(ehci)->self.controller , fmt , ## args) > + dev_dbg(ehci_to_hcd(ehci)->self.controller, fmt, ## args) > #define ehci_err(ehci, fmt, args...) \ > - dev_err(ehci_to_hcd(ehci)->self.controller , fmt , ## args) > + dev_err(ehci_to_hcd(ehci)->self.controller, fmt, ## args) > #define ehci_info(ehci, fmt, args...) \ > - dev_info(ehci_to_hcd(ehci)->self.controller , fmt , ## args) > + dev_info(ehci_to_hcd(ehci)->self.controller, fmt, ## args) > #define ehci_warn(ehci, fmt, args...) \ > - dev_warn(ehci_to_hcd(ehci)->self.controller , fmt , ## args) > + dev_warn(ehci_to_hcd(ehci)->self.controller, fmt, ## args) > > > #ifndef CONFIG_DYNAMIC_DEBUG > -- > 2.6.3 > -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/