commit | 10eb4f901cacf7da87145330f3ca77b723783497 | [log] [tgz] |
---|---|---|
author | Pierre Ossman <pierre@ossman.eu> | Thu Jun 04 07:58:57 2009 +0200 |
committer | Pierre Ossman <pierre@ossman.eu> | Sat Jun 13 22:42:58 2009 +0200 |
tree | 9dafc44aca092cbd09501125320398db5bb0b269 | |
parent | 09adfe454c87e3ec5dffbc42567cd7b4b4948522 [diff] [blame] |
cb710: add missing parenthesis Signed-off-by: Pierre Ossman <pierre@ossman.eu>
diff --git a/drivers/misc/cb710/debug.c b/drivers/misc/cb710/debug.c index 9da11bc..02358d0 100644 --- a/drivers/misc/cb710/debug.c +++ b/drivers/misc/cb710/debug.c
@@ -37,7 +37,7 @@ 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) { \