Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1757170Ab2JRQKi (ORCPT ); Thu, 18 Oct 2012 12:10:38 -0400 Received: from hqemgate03.nvidia.com ([216.228.121.140]:6350 "EHLO hqemgate03.nvidia.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1755243Ab2JRQKf convert rfc822-to-8bit (ORCPT ); Thu, 18 Oct 2012 12:10:35 -0400 X-PGP-Universal: processed; by hqnvupgp06.nvidia.com on Thu, 18 Oct 2012 09:10:29 -0700 From: Philip Rakity To: Sangho Yi CC: "prakity@marvell.com" , "aaron.lu@amd.com" , "linus.walleij@linaro.org" , "ulf.hansson@stericsson.com" , "cjb@laptop.org" , "linux-kernel@vger.kernel.org" , "linux-mmc@vger.kernel.org" Date: Thu, 18 Oct 2012 18:10:25 +0200 Subject: Re: [PATCH 2/3] drivers: mmc: core: sdio.c: fixed coding style error on for() statement Thread-Topic: [PATCH 2/3] drivers: mmc: core: sdio.c: fixed coding style error on for() statement Thread-Index: Ac2tSxXLJn1rV4a8TdO+kduDOxX9Iw== Message-ID: <8B292373-3C73-41EF-A193-0ECF614BE06E@nvidia.com> References: <1350576394-2008-1-git-send-email-antiroot@gmail.com> <1350576394-2008-2-git-send-email-antiroot@gmail.com> In-Reply-To: <1350576394-2008-2-git-send-email-antiroot@gmail.com> Accept-Language: en-US X-MS-Has-Attach: X-MS-TNEF-Correlator: acceptlanguage: en-US MIME-Version: 1.0 Content-Language: en-US Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7BIT Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1583 Lines: 48 On 18 Oct 2012, at 17:06, Sangho Yi wrote: > add a whitespace after ";" on for statement, to follow a coding style guideline. > > Signed-off-by: Sangho Yi > --- > drivers/mmc/core/sdio.c | 4 ++-- > 1 file changed, 2 insertions(+), 2 deletions(-) > > diff --git a/drivers/mmc/core/sdio.c b/drivers/mmc/core/sdio.c > index 14326e8..df09b63 100644 > --- a/drivers/mmc/core/sdio.c > +++ b/drivers/mmc/core/sdio.c > @@ -819,7 +819,7 @@ static void mmc_sdio_remove(struct mmc_host *host) > BUG_ON(!host); > BUG_ON(!host->card); > > - for (i = 0;i < host->card->sdio_funcs;i++) { > + for (i = 0; i < host->card->sdio_funcs; i++) { > if (host->card->sdio_func[i]) { > sdio_remove_func(host->card->sdio_func[i]); > host->card->sdio_func[i] = NULL; > @@ -1151,7 +1151,7 @@ int mmc_attach_sdio(struct mmc_host *host) > /* > * ...then the SDIO functions. > */ > - for (i = 0;i < funcs;i++) { > + for (i = 0; i < funcs; i++) { > err = sdio_add_func(host->card->sdio_func[i]); > if (err) > goto remove_added; > -- > 1.7.9.5 > > -- Reviewed-by: Philip Rakity > To unsubscribe from this list: send the line "unsubscribe linux-mmc" in > the body of a message to majordomo@vger.kernel.org > More majordomo info at http://vger.kernel.org/majordomo-info.html -- 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/