lists.openwall.net   lists  /  announce  owl-users  owl-dev  john-users  john-dev  passwdqc-users  yescrypt  popa3d-users  /  oss-security  kernel-hardening  musl  sabotage  tlsify  passwords  /  crypt-dev  xvendor  /  Bugtraq  Full-Disclosure  linux-kernel  linux-netdev  linux-ext4  linux-hardening  linux-cve-announce  PHC 
Open Source and information security mailing list archives
 
Hash Suite: Windows password security audit tool. GUI, reports in PDF.
[<prev] [next>] [<thread-prev] [day] [month] [year] [list]
Message-ID: <CAPDyKFq4aNohO6p+Bn=_z11+sEjnZUP6Ny0TWLNALSoTdCcbSA@mail.gmail.com>
Date:   Wed, 4 Mar 2020 16:34:33 +0100
From:   Ulf Hansson <ulf.hansson@...aro.org>
To:     Jerome Pouiller <Jerome.Pouiller@...abs.com>
Cc:     "linux-mmc@...r.kernel.org" <linux-mmc@...r.kernel.org>,
        Linux Kernel Mailing List <linux-kernel@...r.kernel.org>
Subject: Re: [PATCH v2] mmc: core: Fix indentation

On Fri, 21 Feb 2020 at 17:32, Jerome Pouiller
<Jerome.Pouiller@...abs.com> wrote:
>
> From: Jérôme Pouiller <jerome.pouiller@...abs.com>
>
> sdio_single_irq_set() was indented with a mix of tabs and spaces.
>
> Signed-off-by: Jérôme Pouiller <jerome.pouiller@...abs.com>

Applied for next, thanks!

Kind regards
Uffe


> ---
> v2:
>   - Also add braces arounf for loop (suggested by Joe)
>
>  drivers/mmc/core/sdio_irq.c | 15 ++++++++-------
>  1 file changed, 8 insertions(+), 7 deletions(-)
>
> diff --git a/drivers/mmc/core/sdio_irq.c b/drivers/mmc/core/sdio_irq.c
> index 900871073bd7..3ffe4ff49aa7 100644
> --- a/drivers/mmc/core/sdio_irq.c
> +++ b/drivers/mmc/core/sdio_irq.c
> @@ -276,14 +276,15 @@ static void sdio_single_irq_set(struct mmc_card *card)
>
>         card->sdio_single_irq = NULL;
>         if ((card->host->caps & MMC_CAP_SDIO_IRQ) &&
> -           card->host->sdio_irqs == 1)
> +           card->host->sdio_irqs == 1) {
>                 for (i = 0; i < card->sdio_funcs; i++) {
> -                      func = card->sdio_func[i];
> -                      if (func && func->irq_handler) {
> -                              card->sdio_single_irq = func;
> -                              break;
> -                      }
> -              }
> +                       func = card->sdio_func[i];
> +                       if (func && func->irq_handler) {
> +                               card->sdio_single_irq = func;
> +                               break;
> +                       }
> +               }
> +       }
>  }
>
>  /**
> --
> 2.25.1
>

Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ