Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 257617
b: refs/heads/master
c: f4b1e98
h: refs/heads/master
i:
  257615: c696be6
v: v3
  • Loading branch information
Clemens Ladisch authored and Takashi Iwai committed Jun 17, 2011
1 parent 0025982 commit 6ae11f8
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 9 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 030aba53ea361df2b44a292606c974ef48d438de
refs/heads/master: f4b1e98aa93d548e5d51c8c5272ea08562fc71c1
2 changes: 1 addition & 1 deletion trunk/sound/firewire/speakers.c
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,7 @@ static int fwspk_open(struct snd_pcm_substream *substream)

err = snd_pcm_hw_constraint_minmax(runtime,
SNDRV_PCM_HW_PARAM_PERIOD_TIME,
5000, 8192000);
5000, UINT_MAX);
if (err < 0)
return err;

Expand Down
6 changes: 0 additions & 6 deletions trunk/sound/pci/oxygen/oxygen_pcm.c
Original file line number Diff line number Diff line change
Expand Up @@ -168,12 +168,6 @@ static int oxygen_open(struct snd_pcm_substream *substream,
if (err < 0)
return err;
}
if (channel == PCM_MULTICH) {
err = snd_pcm_hw_constraint_minmax
(runtime, SNDRV_PCM_HW_PARAM_PERIOD_TIME, 0, 8192000);
if (err < 0)
return err;
}
snd_pcm_set_sync(substream);
chip->streams[channel] = substream;

Expand Down
2 changes: 1 addition & 1 deletion trunk/sound/usb/misc/ua101.c
Original file line number Diff line number Diff line change
Expand Up @@ -645,7 +645,7 @@ static int set_stream_hw(struct ua101 *ua, struct snd_pcm_substream *substream,
err = snd_pcm_hw_constraint_minmax(substream->runtime,
SNDRV_PCM_HW_PARAM_PERIOD_TIME,
1500000 / ua->packets_per_second,
8192000);
UINT_MAX);
if (err < 0)
return err;
err = snd_pcm_hw_constraint_msbits(substream->runtime, 0, 32, 24);
Expand Down

0 comments on commit 6ae11f8

Please sign in to comment.