aboutsummaryrefslogtreecommitdiffstats
path: root/sound/pci/oxygen/oxygen_lib.c
diff options
context:
space:
mode:
authorClemens Ladisch <clemens@ladisch.de>2009-02-27 03:27:44 -0500
committerTakashi Iwai <tiwai@suse.de>2009-02-27 11:32:21 -0500
commit82af308f658cf2193e5058bbbfd37c3437cfb4e7 (patch)
treeb428773f64ac5dca11e7141c50deb35d37b01709 /sound/pci/oxygen/oxygen_lib.c
parent930738de602d2ceb0d1c1b368fe2a8d2a974ab72 (diff)
sound: oxygen: zero-initialize model data
Model drivers assume that model_data is zeroed, so we better use kzalloc() (like we did before when it was allocated together with the card structure). Signed-off-by: Clemens Ladisch <clemens@ladisch.de> Signed-off-by: Takashi Iwai <tiwai@suse.de>
Diffstat (limited to 'sound/pci/oxygen/oxygen_lib.c')
-rw-r--r--sound/pci/oxygen/oxygen_lib.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/pci/oxygen/oxygen_lib.c b/sound/pci/oxygen/oxygen_lib.c
index 6e1cdd2fd768..312251d39696 100644
--- a/sound/pci/oxygen/oxygen_lib.c
+++ b/sound/pci/oxygen/oxygen_lib.c
@@ -566,7 +566,7 @@ int oxygen_pci_probe(struct pci_dev *pci, int index, char *id,
566 goto err_pci_regions; 566 goto err_pci_regions;
567 567
568 if (chip->model.model_data_size) { 568 if (chip->model.model_data_size) {
569 chip->model_data = kmalloc(chip->model.model_data_size, 569 chip->model_data = kzalloc(chip->model.model_data_size,
570 GFP_KERNEL); 570 GFP_KERNEL);
571 if (!chip->model_data) { 571 if (!chip->model_data) {
572 err = -ENOMEM; 572 err = -ENOMEM;