diff options
author | Michael Trimarchi <michael@amarulasolutions.com> | 2013-12-23 05:16:43 -0500 |
---|---|---|
committer | Takashi Iwai <tiwai@suse.de> | 2013-12-23 05:47:29 -0500 |
commit | 150116bcfbd9004f01e682535baddaca2b90d3b2 (patch) | |
tree | 8e3ddc6f6c8962156e93b216d3e4c359a1b33802 /sound/usb | |
parent | 356f402da0f989b16e4b6849e88dba5df0e25944 (diff) |
ALSA: hiface: Fix typo in 352800 rate definition
The Vaughan device support the 352800 rate and not
the 352000
Signed-off-by: Michael Trimarchi <michael@amarulasolutions.com>
Signed-off-by: Takashi Iwai <tiwai@suse.de>
Diffstat (limited to 'sound/usb')
-rw-r--r-- | sound/usb/hiface/pcm.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sound/usb/hiface/pcm.c b/sound/usb/hiface/pcm.c index c21a3df9a0df..2c44139b4041 100644 --- a/sound/usb/hiface/pcm.c +++ b/sound/usb/hiface/pcm.c | |||
@@ -110,7 +110,7 @@ static const struct snd_pcm_hardware pcm_hw = { | |||
110 | #define HIFACE_RATE_96000 0x4a | 110 | #define HIFACE_RATE_96000 0x4a |
111 | #define HIFACE_RATE_176400 0x40 | 111 | #define HIFACE_RATE_176400 0x40 |
112 | #define HIFACE_RATE_192000 0x48 | 112 | #define HIFACE_RATE_192000 0x48 |
113 | #define HIFACE_RATE_352000 0x58 | 113 | #define HIFACE_RATE_352800 0x58 |
114 | #define HIFACE_RATE_384000 0x68 | 114 | #define HIFACE_RATE_384000 0x68 |
115 | 115 | ||
116 | static int hiface_pcm_set_rate(struct pcm_runtime *rt, unsigned int rate) | 116 | static int hiface_pcm_set_rate(struct pcm_runtime *rt, unsigned int rate) |
@@ -141,8 +141,8 @@ static int hiface_pcm_set_rate(struct pcm_runtime *rt, unsigned int rate) | |||
141 | case 192000: | 141 | case 192000: |
142 | rate_value = HIFACE_RATE_192000; | 142 | rate_value = HIFACE_RATE_192000; |
143 | break; | 143 | break; |
144 | case 352000: | 144 | case 352800: |
145 | rate_value = HIFACE_RATE_352000; | 145 | rate_value = HIFACE_RATE_352800; |
146 | break; | 146 | break; |
147 | case 384000: | 147 | case 384000: |
148 | rate_value = HIFACE_RATE_384000; | 148 | rate_value = HIFACE_RATE_384000; |