Re: [PATCH 11/11] sound: ad1889: Fix probable mask then right shift defects

2014-10-27 Thread Takashi Iwai
At Sun, 26 Oct 2014 22:25:07 -0700, Joe Perches wrote: > > Precedence of & and >> is not the same and is not left to right. > shift has higher precedence and should be done after the mask. > > Add parentheses around the mask. > > Signed-off-by: Joe Perches Thanks, applied. Takashi > --- >

[PATCH 11/11] sound: ad1889: Fix probable mask then right shift defects

2014-10-26 Thread Joe Perches
Precedence of & and >> is not the same and is not left to right. shift has higher precedence and should be done after the mask. Add parentheses around the mask. Signed-off-by: Joe Perches --- sound/pci/ad1889.c | 8 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/sound/pc