Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1511204

Re: [PATCH] m68k: Fix ndelay() macro

From Geert Uytterhoeven <geert@linux-m68k.org>
Newsgroups linux.kernel
Subject Re: [PATCH] m68k: Fix ndelay() macro
Date 2016-10-28 18:10 +0200
Message-ID <sxhTb-25n-3@gated-at.bofh.it> (permalink)
References <sxh6O-1yj-5@gated-at.bofh.it>
Organization linux.* mail to news gateway

Show all headers | View raw


Hi Boris,

On Fri, Oct 28, 2016 at 5:12 PM, Boris Brezillon
<boris.brezillon@free-electrons.com> wrote:
> The current ndelay() macro definition has an extra semi-colon at the
> end of the line thus leading to a compilation error when ndelay is used
> in a conditional block with curly braces like this one:
>
>         if (cond)
>                 ndelay(t);
>         else
>                 ...
>
> which, after the preprocessor pass gives:
>
>         if (cond)
>                 m68k_ndelay(t);;
>         else
>                 ...
>
> thus leading to the following gcc error:
>
>         error: 'else' without a previous 'if'
>
> Remove this extra semi-colon.
>
> Signed-off-by: Boris Brezillon <boris.brezillon@free-electrons.com>

Thank you, will apply and queue for v4.9.

> Fixes: c8ee038bd1488 ("m68k: Implement ndelay() based on the existing udelay() logic")

Wow, that's even a quite recent commit. Needs backporting only to v3.10+...

Gr{oetje,eeting}s,

                        Geert

--
Geert Uytterhoeven -- There's lots of Linux beyond ia32 -- geert@linux-m68k.org

In personal conversations with technical people, I call myself a hacker. But
when I'm talking to journalists I just say "programmer" or something like that.
                                -- Linus Torvalds

Back to linux.kernel | Previous | Next — Previous in thread | Next in thread | Find similar | Unroll thread


Thread

[PATCH] m68k: Fix ndelay() macro Boris Brezillon <boris.brezillon@free-electrons.com> - 2016-10-28 17:20 +0200
  Re: [PATCH] m68k: Fix ndelay() macro Geert Uytterhoeven <geert@linux-m68k.org> - 2016-10-28 18:10 +0200
  Re: [PATCH] m68k: Fix ndelay() macro Geert Uytterhoeven <geert@linux-m68k.org> - 2016-10-28 23:10 +0200
  Re: [PATCH] m68k: Fix ndelay() macro Philippe De Muyter <phdm@macq.eu> - 2016-10-28 23:20 +0200

csiph-web