mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-11 12:28:41 +08:00
ALSA: hda/tegra: Remove unnecessary null-check from hda_tegra_runtime_resume()
The "chip" can't be NULL in hda_tegra_runtime_resume() because code would crash otherwise. Let's remove the unnecessary check in order to clean up code a tad. Tested-by: Peter Geis <pgwipeout@gmail.com> # Ouya T30 audio works Tested-by: Matt Merhar <mattmerhar@protonmail.com> # Ouya T30 boot-tested Suggested-by: Thierry Reding <treding@nvidia.com> Signed-off-by: Dmitry Osipenko <digetx@gmail.com> Link: https://lore.kernel.org/r/20210120003154.26749-4-digetx@gmail.com Signed-off-by: Takashi Iwai <tiwai@suse.de>
This commit is contained in:
parent
87f0e46e75
commit
6755568ad1
@ -178,7 +178,7 @@ static int __maybe_unused hda_tegra_runtime_resume(struct device *dev)
|
||||
rc = clk_bulk_prepare_enable(hda->nclocks, hda->clocks);
|
||||
if (rc != 0)
|
||||
return rc;
|
||||
if (chip && chip->running) {
|
||||
if (chip->running) {
|
||||
hda_tegra_init(hda);
|
||||
azx_init_chip(chip, 1);
|
||||
/* disable controller wake up event*/
|
||||
|
Loading…
Reference in New Issue
Block a user