diff options
author | Takashi Iwai <tiwai@suse.de> | 2009-04-21 08:53:08 +0200 |
---|---|---|
committer | Takashi Iwai <tiwai@suse.de> | 2009-04-21 08:53:08 +0200 |
commit | cd474f2d548af3c0eb932d9d47ec11483861aa6f (patch) | |
tree | 07604bcfecf83c01a4476a165a0615eca138a338 /include/sound | |
parent | d91dfbb41bb2e9bdbfbd2cc7078ed7436eab027a (diff) | |
download | linux-3.10-cd474f2d548af3c0eb932d9d47ec11483861aa6f.tar.gz linux-3.10-cd474f2d548af3c0eb932d9d47ec11483861aa6f.tar.bz2 linux-3.10-cd474f2d548af3c0eb932d9d47ec11483861aa6f.zip |
ALSA: Remove deprecated snd_card_new()
Signed-off-by: Takashi Iwai <tiwai@suse.de>
Diffstat (limited to 'include/sound')
-rw-r--r-- | include/sound/core.h | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/include/sound/core.h b/include/sound/core.h index 3dea79829ac..a26bbdcc676 100644 --- a/include/sound/core.h +++ b/include/sound/core.h @@ -300,16 +300,6 @@ int snd_card_create(int idx, const char *id, struct module *module, int extra_size, struct snd_card **card_ret); -static inline __deprecated -struct snd_card *snd_card_new(int idx, const char *id, - struct module *module, int extra_size) -{ - struct snd_card *card; - if (snd_card_create(idx, id, module, extra_size, &card) < 0) - return NULL; - return card; -} - int snd_card_disconnect(struct snd_card *card); int snd_card_free(struct snd_card *card); int snd_card_free_when_closed(struct snd_card *card); |