diff options
Diffstat (limited to 'drivers/misc/cb710/debug.c')
| -rw-r--r-- | drivers/misc/cb710/debug.c | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/misc/cb710/debug.c b/drivers/misc/cb710/debug.c index 9da11bc620a..02358d086e0 100644 --- a/drivers/misc/cb710/debug.c +++ b/drivers/misc/cb710/debug.c @@ -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) {			\  |