Browse Source

ALSA: hda: fix the missing ptr initialization

ebus is a member of extended device and was never initialized, so
do this at device creation.

Signed-off-by: Jeeja KP <jeeja.kp@intel.com>
Signed-off-by: Vinod Koul <vinod.koul@intel.com>
Signed-off-by: Takashi Iwai <tiwai@suse.de>
Vinod Koul 9 years ago
parent
commit
94e9080ce2
1 changed files with 1 additions and 0 deletions
  1. 1 0
      sound/hda/ext/hdac_ext_bus.c

+ 1 - 0
sound/hda/ext/hdac_ext_bus.c

@@ -144,6 +144,7 @@ int snd_hdac_ext_bus_device_init(struct hdac_ext_bus *ebus, int addr)
 	if (!edev)
 	if (!edev)
 		return -ENOMEM;
 		return -ENOMEM;
 	hdev = &edev->hdac;
 	hdev = &edev->hdac;
+	edev->ebus = ebus;
 
 
 	snprintf(name, sizeof(name), "ehdaudio%dD%d", ebus->idx, addr);
 	snprintf(name, sizeof(name), "ehdaudio%dD%d", ebus->idx, addr);