diff options
Diffstat (limited to 'sound/pci/oxygen/oxygen_lib.c')
| -rw-r--r-- | sound/pci/oxygen/oxygen_lib.c | 12 | 
1 files changed, 11 insertions, 1 deletions
diff --git a/sound/pci/oxygen/oxygen_lib.c b/sound/pci/oxygen/oxygen_lib.c index 4fb3f2484fdb..92ffe9dc20c5 100644 --- a/sound/pci/oxygen/oxygen_lib.c +++ b/sound/pci/oxygen/oxygen_lib.c @@ -576,7 +576,7 @@ static void oxygen_card_free(struct snd_card *card)  	mutex_destroy(&chip->mutex);  } -int oxygen_pci_probe(struct pci_dev *pci, int index, char *id, +static int __oxygen_pci_probe(struct pci_dev *pci, int index, char *id,  		     struct module *owner,  		     const struct pci_device_id *ids,  		     int (*get_model)(struct oxygen *chip, @@ -701,6 +701,16 @@ int oxygen_pci_probe(struct pci_dev *pci, int index, char *id,  	pci_set_drvdata(pci, card);  	return 0;  } + +int oxygen_pci_probe(struct pci_dev *pci, int index, char *id, +		     struct module *owner, +		     const struct pci_device_id *ids, +		     int (*get_model)(struct oxygen *chip, +				      const struct pci_device_id *id)) +{ +	return snd_card_free_on_error(&pci->dev, +				      __oxygen_pci_probe(pci, index, id, owner, ids, get_model)); +}  EXPORT_SYMBOL(oxygen_pci_probe);  #ifdef CONFIG_PM_SLEEP  | 
