Commit a99f5916 authored by Tülin İzer's avatar Tülin İzer Committed by Greg Kroah-Hartman

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: default avatarTülin İzer <tulinizer@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent f2ae62fe
...@@ -311,7 +311,7 @@ static const struct bpwr_clk_t bpwr_clks[] = { ...@@ -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);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment