ALSA: hda - Make codec object as a parent for input beep devices
authorTakashi Iwai <tiwai@suse.de>
Thu, 27 Feb 2014 08:33:00 +0000 (09:33 +0100)
committerTakashi Iwai <tiwai@suse.de>
Thu, 27 Feb 2014 08:33:00 +0000 (09:33 +0100)
Instead of the controller, the new codec object is assigned as a
parent for the hd-audio beep input devices, just like already done for
PCM and hwdep.

Signed-off-by: Takashi Iwai <tiwai@suse.de>
sound/pci/hda/hda_beep.c

index d403981346d0a245dbc4b5865d4793012cca32d0..88bb08486f77ebf6f520930f9743d1a8950d5c21 100644 (file)
@@ -166,7 +166,7 @@ static int snd_hda_do_attach(struct hda_beep *beep)
        input_dev->evbit[0] = BIT_MASK(EV_SND);
        input_dev->sndbit[0] = BIT_MASK(SND_BELL) | BIT_MASK(SND_TONE);
        input_dev->event = snd_hda_beep_event;
-       input_dev->dev.parent = codec->bus->card->dev;
+       input_dev->dev.parent = &codec->dev;
        input_set_drvdata(input_dev, beep);
 
        err = input_register_device(input_dev);
This page took 0.026905 seconds and 5 git commands to generate.