mirror of
https://github.com/torvalds/linux.git
synced 2024-11-12 15:11:50 +00:00
ASoC: Intel: Skylake: Fix error return code in skl_probe()
Fix to return error code -ENODEV from the error handling
case instead of 0, as done elsewhere in this function.
Fixes: 87b2bdf022
("ASoC: Intel: Skylake: Initialize NHLT table")
Signed-off-by: Wei Yongjun <weiyj.lk@gmail.com>
Acked-By: Vinod Koul <vinod.kou@intel.com>
Signed-off-by: Mark Brown <broonie@kernel.org>
This commit is contained in:
parent
2392f7fd69
commit
979cf59acc
@ -672,8 +672,10 @@ static int skl_probe(struct pci_dev *pci,
|
||||
|
||||
skl->nhlt = skl_nhlt_init(bus->dev);
|
||||
|
||||
if (skl->nhlt == NULL)
|
||||
if (skl->nhlt == NULL) {
|
||||
err = -ENODEV;
|
||||
goto out_free;
|
||||
}
|
||||
|
||||
skl_nhlt_update_topology_bin(skl);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user