On 2023-10-04 4:55 PM, Maarten Lankhorst wrote:
@@ -465,10 +461,19 @@ static int avs_pci_probe(struct pci_dev *pci, const struct pci_device_id *id)
pci_set_drvdata(pci, bus);
device_disable_async_suspend(dev);
+ ret = snd_hdac_i915_init(bus, false);
+ if (ret == -EPROBE_DEFER)
+ goto err_i915_init;
+ else if (ret < 0)
The 'else' part seems redundant. s/else if/else/.
+ dev_info(bus->dev, "i915 init unsuccessful: %d\n", ret);
+