diff options
author | Clemens Ladisch <clemens@ladisch.de> | 2007-08-13 11:37:55 -0400 |
---|---|---|
committer | Jaroslav Kysela <perex@perex.cz> | 2007-10-16 09:58:52 -0400 |
commit | b83f346bc4d6ab358fd0da85b7eab08bf0234c0b (patch) | |
tree | 4e4d033bcba71b343e96e1063d6b5f8f88175f7a /sound/pci/rme96.c | |
parent | f9ff161a14baca1a4ead5f12377ab25b9dd332e1 (diff) |
[ALSA] remove incorrect usage of SNDRV_PCM_INFO_SYNC_START and snd_pcm_set_sync()
Set the SNDRV_PCM_INFO_SYNC_START flag and the substream's sync ID
(only) if the substream actually can be linked to another one.
Signed-off-by: Clemens Ladisch <clemens@ladisch.de>
Signed-off-by: Jaroslav Kysela <perex@suse.cz>
Diffstat (limited to 'sound/pci/rme96.c')
-rw-r--r-- | sound/pci/rme96.c | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/sound/pci/rme96.c b/sound/pci/rme96.c index 9a4596f879e8..ba4a34bae48f 100644 --- a/sound/pci/rme96.c +++ b/sound/pci/rme96.c | |||
@@ -1176,8 +1176,6 @@ snd_rme96_playback_spdif_open(struct snd_pcm_substream *substream) | |||
1176 | struct rme96 *rme96 = snd_pcm_substream_chip(substream); | 1176 | struct rme96 *rme96 = snd_pcm_substream_chip(substream); |
1177 | struct snd_pcm_runtime *runtime = substream->runtime; | 1177 | struct snd_pcm_runtime *runtime = substream->runtime; |
1178 | 1178 | ||
1179 | snd_pcm_set_sync(substream); | ||
1180 | |||
1181 | spin_lock_irq(&rme96->lock); | 1179 | spin_lock_irq(&rme96->lock); |
1182 | if (rme96->playback_substream != NULL) { | 1180 | if (rme96->playback_substream != NULL) { |
1183 | spin_unlock_irq(&rme96->lock); | 1181 | spin_unlock_irq(&rme96->lock); |
@@ -1214,8 +1212,6 @@ snd_rme96_capture_spdif_open(struct snd_pcm_substream *substream) | |||
1214 | struct rme96 *rme96 = snd_pcm_substream_chip(substream); | 1212 | struct rme96 *rme96 = snd_pcm_substream_chip(substream); |
1215 | struct snd_pcm_runtime *runtime = substream->runtime; | 1213 | struct snd_pcm_runtime *runtime = substream->runtime; |
1216 | 1214 | ||
1217 | snd_pcm_set_sync(substream); | ||
1218 | |||
1219 | runtime->hw = snd_rme96_capture_spdif_info; | 1215 | runtime->hw = snd_rme96_capture_spdif_info; |
1220 | if (snd_rme96_getinputtype(rme96) != RME96_INPUT_ANALOG && | 1216 | if (snd_rme96_getinputtype(rme96) != RME96_INPUT_ANALOG && |
1221 | (rate = snd_rme96_capture_getrate(rme96, &isadat)) > 0) | 1217 | (rate = snd_rme96_capture_getrate(rme96, &isadat)) > 0) |
@@ -1247,8 +1243,6 @@ snd_rme96_playback_adat_open(struct snd_pcm_substream *substream) | |||
1247 | struct rme96 *rme96 = snd_pcm_substream_chip(substream); | 1243 | struct rme96 *rme96 = snd_pcm_substream_chip(substream); |
1248 | struct snd_pcm_runtime *runtime = substream->runtime; | 1244 | struct snd_pcm_runtime *runtime = substream->runtime; |
1249 | 1245 | ||
1250 | snd_pcm_set_sync(substream); | ||
1251 | |||
1252 | spin_lock_irq(&rme96->lock); | 1246 | spin_lock_irq(&rme96->lock); |
1253 | if (rme96->playback_substream != NULL) { | 1247 | if (rme96->playback_substream != NULL) { |
1254 | spin_unlock_irq(&rme96->lock); | 1248 | spin_unlock_irq(&rme96->lock); |
@@ -1280,8 +1274,6 @@ snd_rme96_capture_adat_open(struct snd_pcm_substream *substream) | |||
1280 | struct rme96 *rme96 = snd_pcm_substream_chip(substream); | 1274 | struct rme96 *rme96 = snd_pcm_substream_chip(substream); |
1281 | struct snd_pcm_runtime *runtime = substream->runtime; | 1275 | struct snd_pcm_runtime *runtime = substream->runtime; |
1282 | 1276 | ||
1283 | snd_pcm_set_sync(substream); | ||
1284 | |||
1285 | runtime->hw = snd_rme96_capture_adat_info; | 1277 | runtime->hw = snd_rme96_capture_adat_info; |
1286 | if (snd_rme96_getinputtype(rme96) == RME96_INPUT_ANALOG) { | 1278 | if (snd_rme96_getinputtype(rme96) == RME96_INPUT_ANALOG) { |
1287 | /* makes no sense to use analog input. Note that analog | 1279 | /* makes no sense to use analog input. Note that analog |