diff options
author | Takashi Iwai <tiwai@suse.de> | 2009-07-02 11:51:44 +0200 |
---|---|---|
committer | Takashi Iwai <tiwai@suse.de> | 2009-07-02 11:53:12 +0200 |
commit | 3f5d3465be8f6e04f43d9b6d543fe28d4be07d78 (patch) | |
tree | de1589de80ef1d3d05190d411e7e1d9391135492 /sound/usb/usx2y/us122l.c | |
parent | 563c2bf59d392357bcc1d99642933cc88c687964 (diff) |
ALSA: usx2y - reparent sound device
Fix the parent device to be the USB interface, not the USB device.
A similiar commit like 563c2bf59d392357bcc1d99642933cc88c687964.
Signed-off-by: Takashi Iwai <tiwai@suse.de>
Diffstat (limited to 'sound/usb/usx2y/us122l.c')
-rw-r--r-- | sound/usb/usx2y/us122l.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/usb/usx2y/us122l.c b/sound/usb/usx2y/us122l.c index a5aae9d67f3..fd44946ce4b 100644 --- a/sound/usb/usx2y/us122l.c +++ b/sound/usb/usx2y/us122l.c @@ -514,7 +514,6 @@ static int usx2y_create_card(struct usb_device *device, struct snd_card **cardp) US122L(card)->chip.dev->bus->busnum, US122L(card)->chip.dev->devnum ); - snd_card_set_dev(card, &device->dev); *cardp = card; return 0; } @@ -531,6 +530,7 @@ static int us122l_usb_probe(struct usb_interface *intf, if (err < 0) return err; + snd_card_set_dev(card, &intf->dev); if (!us122l_create_card(card)) { snd_card_free(card); return -EINVAL; |