aboutsummaryrefslogtreecommitdiffstats
path: root/sound/core
diff options
context:
space:
mode:
authorPierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>2020-09-02 16:21:20 -0500
committerTakashi Iwai <tiwai@suse.de>2020-09-03 09:25:26 +0200
commit3bcf8eeb7d979402d3db96fb58bed456a3c66668 (patch)
treea513d53fd8b7df858143b59c851055dd7666405a /sound/core
parentALSA: core: timer: remove redundant assignment (diff)
downloadlinux-dev-3bcf8eeb7d979402d3db96fb58bed456a3c66668.tar.xz
linux-dev-3bcf8eeb7d979402d3db96fb58bed456a3c66668.zip
ALSA: core: timer: clarify operator precedence
fix cppcheck warning: sound/core/timer.c:1286:9: style: Clarify calculation precedence for '&' and '?'. [clarifyCalculation] ? "running" : "stopped"); ^ Signed-off-by: Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com> Link: https://lore.kernel.org/r/20200902212133.30964-6-pierre-louis.bossart@linux.intel.com Signed-off-by: Takashi Iwai <tiwai@suse.de>
Diffstat (limited to 'sound/core')
-rw-r--r--sound/core/timer.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sound/core/timer.c b/sound/core/timer.c
index 1349f5b5be09..b915d39e7acb 100644
--- a/sound/core/timer.c
+++ b/sound/core/timer.c
@@ -1281,8 +1281,8 @@ static void snd_timer_proc_read(struct snd_info_entry *entry,
list_for_each_entry(ti, &timer->open_list_head, open_list)
snd_iprintf(buffer, " Client %s : %s\n",
ti->owner ? ti->owner : "unknown",
- ti->flags & (SNDRV_TIMER_IFLG_START |
- SNDRV_TIMER_IFLG_RUNNING)
+ (ti->flags & (SNDRV_TIMER_IFLG_START |
+ SNDRV_TIMER_IFLG_RUNNING))
? "running" : "stopped");
}
mutex_unlock(&register_mutex);