diff options
author | Peter Ujfalusi <peter.ujfalusi@ti.com> | 2018-11-08 09:30:00 +0200 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2018-11-13 09:50:32 -0800 |
commit | f15c19af929d380d0acb2a8d8277d688351bd5de (patch) | |
tree | e1bffd71add44ef91f5e0297564b2378092a7f89 | |
parent | 465d85b3976a15c9e0e205ff50be64efa11b7af3 (diff) | |
download | talos-obmc-linux-f15c19af929d380d0acb2a8d8277d688351bd5de.tar.gz talos-obmc-linux-f15c19af929d380d0acb2a8d8277d688351bd5de.zip |
ASoC: omap-mcbsp: No need to initialize max_xx_thres when it is not used
Initializing to -EINVAL is not correct as the variables are unsigned and
if buffer_size is 0 then they are not used anyway.
Signed-off-by: Peter Ujfalusi <peter.ujfalusi@ti.com>
Acked-by: Jarkko Nikula <jarkko.nikula@bitmer.com>
Tested-by: Jarkko Nikula <jarkko.nikula@bitmer.com>
Signed-off-by: Mark Brown <broonie@kernel.org>
-rw-r--r-- | sound/soc/omap/omap-mcbsp.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/sound/soc/omap/omap-mcbsp.c b/sound/soc/omap/omap-mcbsp.c index 8cab1151d3bb..e0ef4774c710 100644 --- a/sound/soc/omap/omap-mcbsp.c +++ b/sound/soc/omap/omap-mcbsp.c @@ -727,9 +727,6 @@ static int omap_mcbsp_init(struct platform_device *pdev) "Unable to create additional controls\n"); goto err_thres; } - } else { - mcbsp->max_tx_thres = -EINVAL; - mcbsp->max_rx_thres = -EINVAL; } ret = omap_mcbsp_st_init(pdev); |