diff options
author | Takashi Iwai <tiwai@suse.de> | 2015-01-29 21:32:47 +0100 |
---|---|---|
committer | Takashi Iwai <tiwai@suse.de> | 2015-02-02 14:42:33 +0100 |
commit | 4b440be667c6187717c99e4d427119fa415ced29 (patch) | |
tree | 20e9fe801416caf247eb883bec998598d32e2ce2 /include/sound/core.h | |
parent | 23c18d4bfd73ee24070849faf98b3ab01263a3c4 (diff) | |
download | linux-4b440be667c6187717c99e4d427119fa415ced29.tar.bz2 |
ALSA: Add a helper to initialize device
Introduce a new helper function snd_device_initialize() to initialize
the device object for sound devices.
Reviewed-by: Jaroslav Kysela <perex@perex.cz>
Signed-off-by: Takashi Iwai <tiwai@suse.de>
Diffstat (limited to 'include/sound/core.h')
-rw-r--r-- | include/sound/core.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/sound/core.h b/include/sound/core.h index 39d14234961d..de7a878217d7 100644 --- a/include/sound/core.h +++ b/include/sound/core.h @@ -207,6 +207,8 @@ extern struct class *sound_class; void snd_request_card(int card); +void snd_device_initialize(struct device *dev, struct snd_card *card); + int snd_register_device_for_dev(int type, struct snd_card *card, int dev, const struct file_operations *f_ops, void *private_data, struct device *device, |