aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--sound/soc/bcm/cygnus-ssp.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/soc/bcm/cygnus-ssp.c b/sound/soc/bcm/cygnus-ssp.c
index cd8aef8ed8a5..abafadc0b534 100644
--- a/sound/soc/bcm/cygnus-ssp.c
+++ b/sound/soc/bcm/cygnus-ssp.c
@@ -986,7 +986,7 @@ static int cygnus_set_dai_tdm_slot(struct snd_soc_dai *cpu_dai,
986 986
987 active_slots = hweight32(tx_mask); 987 active_slots = hweight32(tx_mask);
988 988
989 if ((active_slots < 0) || (active_slots > 16)) 989 if (active_slots > 16)
990 return -EINVAL; 990 return -EINVAL;
991 991
992 /* Slot value must be even */ 992 /* Slot value must be even */