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

2016-10-28 Thread Philippe De Muyter
On Fri, Oct 28, 2016 at 05:12:28PM +0200, Boris Brezillon 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: without curly braces > >

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

2016-10-28 Thread Philippe De Muyter
On Fri, Oct 28, 2016 at 05:12:28PM +0200, Boris Brezillon 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: without curly braces > >

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

2016-10-28 Thread Geert Uytterhoeven
Hi Philippe, On Fri, Oct 28, 2016 at 11:03 PM, Philippe De Muyter wrote: > On Fri, Oct 28, 2016 at 05:12:28PM +0200, Boris Brezillon 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

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

2016-10-28 Thread Geert Uytterhoeven
Hi Philippe, On Fri, Oct 28, 2016 at 11:03 PM, Philippe De Muyter wrote: > On Fri, Oct 28, 2016 at 05:12:28PM +0200, Boris Brezillon 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

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

2016-10-28 Thread Geert Uytterhoeven
Hi Boris, On Fri, Oct 28, 2016 at 5:12 PM, Boris Brezillon 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

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

2016-10-28 Thread Geert Uytterhoeven
Hi Boris, On Fri, Oct 28, 2016 at 5:12 PM, Boris Brezillon 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) >

[PATCH] m68k: Fix ndelay() macro

2016-10-28 Thread Boris Brezillon
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

[PATCH] m68k: Fix ndelay() macro

2016-10-28 Thread Boris Brezillon
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