diff options
| author | Dave Jones <davej@codemonkey.org.uk> | 2002-11-25 02:36:31 -0800 |
|---|---|---|
| committer | Dave Jones <davej@codemonkey.org.uk> | 2002-11-25 02:36:31 -0800 |
| commit | c7830dae29208aad2d9170d7f00dd756b53dd852 (patch) | |
| tree | 48c4c05d7b08c81d063ab3ec8a3d7904b2f0566f | |
| parent | f69142b0164a9ede7a7ba1dd415aff52e6a7d320 (diff) | |
[PATCH] speed clarification in sb_audio
from 2.4
| -rw-r--r-- | sound/oss/sb_audio.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sound/oss/sb_audio.c b/sound/oss/sb_audio.c index dda11e473696..ff2d506fceb0 100644 --- a/sound/oss/sb_audio.c +++ b/sound/oss/sb_audio.c @@ -602,8 +602,8 @@ static int sb16_audio_set_speed(int dev, int speed) if (speed > 0) { - if (speed < 5000) /* which of these */ - speed = 4000; /* is correct ??? */ + if (speed < 5000) + speed = 5000; if (speed > max_speed) speed = max_speed; |
