Boris Brezillon 7e251bb21a m68k: Fix ndelay() macro
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 without 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>
Fixes: c8ee038bd1488 ("m68k: Implement ndelay() based on the existing udelay() logic")
Signed-off-by: Geert Uytterhoeven <geert@linux-m68k.org>
2016-10-30 10:13:55 +01:00
..
2015-06-16 16:45:38 +10:00
2016-06-04 00:23:28 +02:00
2016-06-04 00:23:28 +02:00
2011-03-31 11:26:23 -03:00
2016-06-04 00:23:28 +02:00
2016-07-03 14:05:28 +02:00
2016-10-30 10:13:55 +01:00
2016-08-07 23:47:19 -04:00
2016-07-03 14:05:28 +02:00
2016-06-04 00:23:28 +02:00
2016-06-04 00:23:28 +02:00
2016-06-04 00:23:28 +02:00
2016-06-04 00:23:28 +02:00