|
@@ -635,6 +635,8 @@ static int probe_codec(struct hdac_bus *bus, int addr)
|
|
|
unsigned int cmd = (addr << 28) | (AC_NODE_ROOT << 20) |
|
|
|
(AC_VERB_PARAMETERS << 8) | AC_PAR_VENDOR_ID;
|
|
|
unsigned int res = -1;
|
|
|
+ struct skl *skl = bus_to_skl(bus);
|
|
|
+ struct hdac_device *hdev;
|
|
|
|
|
|
mutex_lock(&bus->cmd_mutex);
|
|
|
snd_hdac_bus_send_cmd(bus, cmd);
|
|
@@ -644,7 +646,11 @@ static int probe_codec(struct hdac_bus *bus, int addr)
|
|
|
return -EIO;
|
|
|
dev_dbg(bus->dev, "codec #%d probed OK\n", addr);
|
|
|
|
|
|
- return snd_hdac_ext_bus_device_init(bus, addr);
|
|
|
+ hdev = devm_kzalloc(&skl->pci->dev, sizeof(*hdev), GFP_KERNEL);
|
|
|
+ if (!hdev)
|
|
|
+ return -ENOMEM;
|
|
|
+
|
|
|
+ return snd_hdac_ext_bus_device_init(bus, addr, hdev);
|
|
|
}
|
|
|
|
|
|
/* Codec initialization */
|