diff options
author | Takashi Iwai <tiwai@suse.de> | 2021-07-21 01:17:20 +0300 |
---|---|---|
committer | Takashi Iwai <tiwai@suse.de> | 2021-07-21 01:31:39 +0300 |
commit | 35fe7901150d5a4a67b4bab544e926fbbf00ebfe (patch) | |
tree | f3db7fda90654647ac4cfeb8bcafcb0d9d5f0d0f /sound/pci/cs4281.c | |
parent | 9b7843d1e125dca0d6ed0af9e8dd709d41eb25ad (diff) | |
download | linux-35fe7901150d5a4a67b4bab544e926fbbf00ebfe.tar.xz |
ALSA: cs4281: Fix missing chip initialization
The chip variable was forgotten to be initialized properly while
changing the object creation from the own malloc to
card->private_data. This patch fixes it.
Fixes: 99041fea70d0 ("ALSA: cs4281: Allocate resources with device-managed APIs")
Reported-by: Nathan Chancellor <nathan@kernel.org>
Link: https://lore.kernel.org/r/s5him14ocjz.wl-tiwai@suse.de
Signed-off-by: Takashi Iwai <tiwai@suse.de>
Diffstat (limited to 'sound/pci/cs4281.c')
-rw-r--r-- | sound/pci/cs4281.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/pci/cs4281.c b/sound/pci/cs4281.c index f338caf98354..e7367402b84a 100644 --- a/sound/pci/cs4281.c +++ b/sound/pci/cs4281.c @@ -1288,7 +1288,7 @@ static int snd_cs4281_create(struct snd_card *card, struct pci_dev *pci, int dual_codec) { - struct cs4281 *chip; + struct cs4281 *chip = card->private_data; int err; err = pcim_enable_device(pci); |