Skip to content

Commit

Permalink
cb710: add missing parenthesis
Browse files Browse the repository at this point in the history
Signed-off-by: Pierre Ossman <pierre@ossman.eu>
  • Loading branch information
Pierre Ossman committed Jun 13, 2009
1 parent 09adfe4 commit 10eb4f9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/misc/cb710/debug.c
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ static void cb710_read_regs_##t(void __iomem *iobase, \
unsigned i, j; \
\
for (i = 0; i < ARRAY_SIZE(allow); ++i, reg += 16/(t/8)) { \
if (!select & (1 << i)) \
if (!(select & (1 << i))) \
continue; \
\
for (j = 0; j < 0x10/(t/8); ++j) { \
Expand Down

0 comments on commit 10eb4f9

Please sign in to comment.