diff --git a/audio/filters/chorus.c b/audio/filters/chorus.c
index 99a98ada05..ec40a22f84 100644
--- a/audio/filters/chorus.c
+++ b/audio/filters/chorus.c
@@ -84,7 +84,6 @@ static void chorus_process(void *data, struct dspfilter_output *output,
       out[1] = ch->mix_dry * in[1] + ch->mix_wet * chorus_r;
 
       ch->old_ptr = (ch->old_ptr + 1) & CHORUS_DELAY_MASK;
-      ch->lfo_ptr = (ch->lfo_ptr + 1) % ch->lfo_period;
    }
 }