diff options
-rw-r--r-- | sound/core/timer.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sound/core/timer.c b/sound/core/timer.c index a9b9a277e00c..6051aed3197f 100644 --- a/sound/core/timer.c +++ b/sound/core/timer.c | |||
@@ -393,7 +393,8 @@ unsigned long snd_timer_resolution(struct snd_timer_instance *timeri) | |||
393 | 393 | ||
394 | if (timeri == NULL) | 394 | if (timeri == NULL) |
395 | return 0; | 395 | return 0; |
396 | if ((timer = timeri->timer) != NULL) { | 396 | timer = timeri->timer; |
397 | if (timer) { | ||
397 | if (timer->hw.c_resolution) | 398 | if (timer->hw.c_resolution) |
398 | return timer->hw.c_resolution(timer); | 399 | return timer->hw.c_resolution(timer); |
399 | return timer->hw.resolution; | 400 | return timer->hw.resolution; |