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:
parent
f2ae62fe33
commit
a99f5916b9
|
@ -311,7 +311,7 @@ static const struct bpwr_clk_t bpwr_clks[] = {
|
|||
|
||||
#define SET_GROUP_BITS16(reg, position, width, value) \
|
||||
do {\
|
||||
reg &= ~((0xFFFF >> (16 - (width))) << (position)) ; \
|
||||
reg &= ~((0xFFFF >> (16 - (width))) << (position)); \
|
||||
reg |= ((value & (0xFFFF >> (16 - (width)))) << (position)); \
|
||||
} while (0);
|
||||
|
||||
|
|
Loading…
Reference in New Issue