aboutsummaryrefslogtreecommitdiffstats
path: root/sound/core
diff options
context:
space:
mode:
authorJohannes Berg <johannes@sipsolutions.net>2006-10-05 09:06:34 -0400
committerJaroslav Kysela <perex@suse.cz>2007-02-09 03:00:07 -0500
commitc78085fcd2ce7cd036e1488472eb41a64d70949a (patch)
treedb48675117e830b287784bf68baadd286a12a6a7 /sound/core
parent12b131c4cf3eb1dc8a60082a434b7b100774c2e7 (diff)
[ALSA] alsa core: add struct device pointer to struct snd_pcm
This patch adds a struct device pointer to struct snd_pcm in order to be able to give it a different device than the card. It defaults to the card's device, however, so it should behave identically for drivers not touching the field. Signed-off-by: Johannes Berg <johannes@sipsolutions.net> Signed-off-by: Takashi Iwai <tiwai@suse.de> Signed-off-by: Jaroslav Kysela <perex@suse.cz>
Diffstat (limited to 'sound/core')
-rw-r--r--sound/core/pcm.c18
1 files changed, 13 insertions, 5 deletions
diff --git a/sound/core/pcm.c b/sound/core/pcm.c
index 8e0189885516..4701f07ee0ae 100644
--- a/sound/core/pcm.c
+++ b/sound/core/pcm.c
@@ -944,6 +944,7 @@ static int snd_pcm_dev_register(struct snd_device *device)
944 struct list_head *list; 944 struct list_head *list;
945 char str[16]; 945 char str[16];
946 struct snd_pcm *pcm = device->device_data; 946 struct snd_pcm *pcm = device->device_data;
947 struct device *dev;
947 948
948 snd_assert(pcm != NULL && device != NULL, return -ENXIO); 949 snd_assert(pcm != NULL && device != NULL, return -ENXIO);
949 mutex_lock(&register_mutex); 950 mutex_lock(&register_mutex);
@@ -966,11 +967,18 @@ static int snd_pcm_dev_register(struct snd_device *device)
966 devtype = SNDRV_DEVICE_TYPE_PCM_CAPTURE; 967 devtype = SNDRV_DEVICE_TYPE_PCM_CAPTURE;
967 break; 968 break;
968 } 969 }
969 if ((err = snd_register_device(devtype, pcm->card, 970 /* device pointer to use, pcm->dev takes precedence if
970 pcm->device, 971 * it is assigned, otherwise fall back to card's device
971 &snd_pcm_f_ops[cidx], 972 * if possible */
972 pcm, str)) < 0) 973 dev = pcm->dev;
973 { 974 if (!dev)
975 dev = pcm->card ? pcm->card->dev : NULL;
976 /* register pcm */
977 err = snd_register_device_for_dev(devtype, pcm->card,
978 pcm->device,
979 &snd_pcm_f_ops[cidx],
980 pcm, str, dev);
981 if (err < 0) {
974 list_del(&pcm->list); 982 list_del(&pcm->list);
975 mutex_unlock(&register_mutex); 983 mutex_unlock(&register_mutex);
976 return err; 984 return err;