diff options
author | Yang Yingliang <yangyingliang@huawei.com> | 2022-10-14 09:36:40 +0800 |
---|---|---|
committer | Takashi Iwai <tiwai@suse.de> | 2022-10-17 12:42:04 +0200 |
commit | a8dfb85095dd8b884ee962e64b16ef52bc54119d (patch) | |
tree | 5486c60a013fc0a77f9838bd21c80bfb70381310 /sound/pci/hda | |
parent | 9abf2313adc1ca1b6180c508c25f22f9395cc780 (diff) |
ALSA: hda/realtek: simplify the return of comp_bind()
After commit 23904f7b2518 ("ALSA: hda: cs35l41: Remove
suspend/resume hda hooks"), the return of comp_bind()
can be simplified. No functional changed.
Signed-off-by: Yang Yingliang <yangyingliang@huawei.com>
Link: https://lore.kernel.org/r/20221014013640.1142107-1-yangyingliang@huawei.com
Signed-off-by: Takashi Iwai <tiwai@suse.de>
Diffstat (limited to 'sound/pci/hda')
-rw-r--r-- | sound/pci/hda/patch_realtek.c | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/sound/pci/hda/patch_realtek.c b/sound/pci/hda/patch_realtek.c index e6c4bb5fa041..7c177426bf30 100644 --- a/sound/pci/hda/patch_realtek.c +++ b/sound/pci/hda/patch_realtek.c @@ -6654,13 +6654,8 @@ static int comp_bind(struct device *dev) { struct hda_codec *cdc = dev_to_hda_codec(dev); struct alc_spec *spec = cdc->spec; - int ret; - ret = component_bind_all(dev, spec->comps); - if (ret) - return ret; - - return 0; + return component_bind_all(dev, spec->comps); } static void comp_unbind(struct device *dev) |