cppcheck warning:

sound/soc/codecs/tlv320dac33.c:1074:43: style: Clarify calculation
precedence for '%' and '?'. [clarifyCalculation]
    (dac33->alarm_threshold % period_size ?
                                          ^

Signed-off-by: Pierre-Louis Bossart <pierre-louis.boss...@linux.intel.com>
---
 sound/soc/codecs/tlv320dac33.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sound/soc/codecs/tlv320dac33.c b/sound/soc/codecs/tlv320dac33.c
index d905e03aaec7..48572d66cb3b 100644
--- a/sound/soc/codecs/tlv320dac33.c
+++ b/sound/soc/codecs/tlv320dac33.c
@@ -1071,7 +1071,7 @@ static void dac33_calculate_times(struct 
snd_pcm_substream *substream,
                         */
                        dac33->nsample = period_size *
                                ((dac33->alarm_threshold / period_size) +
-                               (dac33->alarm_threshold % period_size ?
+                                ((dac33->alarm_threshold % period_size) ?
                                1 : 0));
                else if (period_size > nsample_limit)
                        dac33->nsample = nsample_limit;
-- 
2.25.1

Reply via email to