mirror of
https://github.com/torvalds/linux.git
synced 2024-12-18 17:12:55 +00:00
[media] snd_tea575x: precedence bug in fmr2_tea575x_get_pins()
The "|" operation has higher precedence that "?:" so this couldn't return both flags set at once as intended. Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com> Signed-off-by: Hans Verkuil <hans.verkuil@cisco.com> Signed-off-by: Mauro Carvalho Chehab <m.chehab@samsung.com>
This commit is contained in:
parent
8510ae4e57
commit
b5c2e0abe1
@ -74,8 +74,8 @@ static u8 fmr2_tea575x_get_pins(struct snd_tea575x *tea)
|
||||
struct fmr2 *fmr2 = tea->private_data;
|
||||
u8 bits = inb(fmr2->io);
|
||||
|
||||
return (bits & STR_DATA) ? TEA575X_DATA : 0 |
|
||||
(bits & STR_MOST) ? TEA575X_MOST : 0;
|
||||
return ((bits & STR_DATA) ? TEA575X_DATA : 0) |
|
||||
((bits & STR_MOST) ? TEA575X_MOST : 0);
|
||||
}
|
||||
|
||||
static void fmr2_tea575x_set_direction(struct snd_tea575x *tea, bool output)
|
||||
|
Loading…
Reference in New Issue
Block a user