diff options
author | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2019-06-14 12:47:55 +0300 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2019-06-14 18:37:48 +0300 |
commit | 227ab8baa15bdd7a48acfb7b61c52a7a5eb87e72 (patch) | |
tree | c6667b129db854240efbe1f2872e4325441273ff /sound/soc/fsl/fsl_ssi.c | |
parent | 7f807f280964e31fb32fe6aaa263cfa2488236d8 (diff) | |
download | linux-227ab8baa15bdd7a48acfb7b61c52a7a5eb87e72.tar.xz |
ASoC: fsl: no need to check return value of debugfs_create functions
When calling debugfs functions, there is no need to ever check the
return value. The function can work or not, but the code logic should
never do something different based on this.
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Signed-off-by: Mark Brown <broonie@kernel.org>
Diffstat (limited to 'sound/soc/fsl/fsl_ssi.c')
-rw-r--r-- | sound/soc/fsl/fsl_ssi.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/sound/soc/fsl/fsl_ssi.c b/sound/soc/fsl/fsl_ssi.c index 09b2967befd9..fa862af25c1a 100644 --- a/sound/soc/fsl/fsl_ssi.c +++ b/sound/soc/fsl/fsl_ssi.c @@ -1582,9 +1582,7 @@ static int fsl_ssi_probe(struct platform_device *pdev) } } - ret = fsl_ssi_debugfs_create(&ssi->dbg_stats, dev); - if (ret) - goto error_asoc_register; + fsl_ssi_debugfs_create(&ssi->dbg_stats, dev); /* Initially configures SSI registers */ fsl_ssi_hw_init(ssi); |