diff options
author | Hongbo Li <lihongbo22@huawei.com> | 2024-08-28 20:28:29 +0800 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2024-08-28 13:52:18 +0100 |
commit | 75560718e83bede12d70b2a6b6940089477f58e4 (patch) | |
tree | 6bb26a23b52946106f8308b049e83fff0512d782 /sound/soc | |
parent | 69a8d0edb9d78bb5515133b7c08f399d6eaff37a (diff) |
ASoC: dapm: Use IS_ERR_OR_NULL() helper function
Use the IS_ERR_OR_NULL() helper instead of open-coding a
NULL and an error pointer checks to simplify the code and
improve readability.
Signed-off-by: Hongbo Li <lihongbo22@huawei.com>
Link: https://patch.msgid.link/20240828122829.3697502-1-lihongbo22@huawei.com
Signed-off-by: Mark Brown <broonie@kernel.org>
Diffstat (limited to 'sound/soc')
-rw-r--r-- | sound/soc/soc-dapm.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/soc/soc-dapm.c b/sound/soc/soc-dapm.c index d7d6dbb9d9ea..ad289f91b13a 100644 --- a/sound/soc/soc-dapm.c +++ b/sound/soc/soc-dapm.c @@ -2254,7 +2254,7 @@ static const struct file_operations dapm_bias_fops = { void snd_soc_dapm_debugfs_init(struct snd_soc_dapm_context *dapm, struct dentry *parent) { - if (!parent || IS_ERR(parent)) + if (IS_ERR_OR_NULL(parent)) return; dapm->debugfs_dapm = debugfs_create_dir("dapm", parent); |