Staging: tidspbridge: _tiomap.h: fixed warning 'space prohibited before semicolon'.

This patch fixes warning 'space prohibited before semicolon' found by
checkpatch.pl in tidspbridge/_tiomap.h

Signed-off-by: Tülin İzer <tulinizer@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
Tülin İzer 2013-05-22 04:24:22 +03:00 committed by Greg Kroah-Hartman
parent f2ae62fe33
commit a99f5916b9

View file

@ -311,7 +311,7 @@ static const struct bpwr_clk_t bpwr_clks[] = {
#define SET_GROUP_BITS16(reg, position, width, value) \ #define SET_GROUP_BITS16(reg, position, width, value) \
do {\ do {\
reg &= ~((0xFFFF >> (16 - (width))) << (position)) ; \ reg &= ~((0xFFFF >> (16 - (width))) << (position)); \
reg |= ((value & (0xFFFF >> (16 - (width)))) << (position)); \ reg |= ((value & (0xFFFF >> (16 - (width)))) << (position)); \
} while (0); } while (0);