]> git.karo-electronics.de Git - karo-tx-linux.git/blobdiff - sound/soc/samsung/i2s.c
Merge remote-tracking branch 'asoc/topic/samsung' into asoc-next
[karo-tx-linux.git] / sound / soc / samsung / i2s.c
index 8200fc1b6d03335ea279410ba6ded3ae5d6df9b5..b302f3b7a587f3e480586419affc8e300c80ad8d 100644 (file)
@@ -811,13 +811,13 @@ static int config_setup(struct i2s_dai *i2s)
                return -EAGAIN;
        }
 
-       /* Don't bother RFS, BFS & PSR in Slave mode */
-       if (is_slave(i2s))
-               return 0;
-
        set_bfs(i2s, bfs);
        set_rfs(i2s, rfs);
 
+       /* Don't bother with PSR in Slave mode */
+       if (is_slave(i2s))
+               return 0;
+
        if (!(i2s->quirks & QUIRK_NO_MUXPSR)) {
                psr = i2s->rclk_srcrate / i2s->frmclk / rfs;
                writel(((psr - 1) << 8) | PSR_PSREN, i2s->addr + I2SPSR);