aboutsummaryrefslogtreecommitdiffstats
path: root/sound
diff options
context:
space:
mode:
authorClemens Ladisch <clemens@ladisch.de>2010-07-08 10:38:01 -0400
committerTakashi Iwai <tiwai@suse.de>2010-07-09 09:08:12 -0400
commitd32d552e665dc07384208108165592d0b524dba2 (patch)
treef9bdfaa6bbed7a28a578b5cad4a859d162c20a73 /sound
parent54a3b8dc38d47834336400cbe376a3aca0437cae (diff)
ALSA: usb-audio: silence a superfluous warning
It is not advisable to print a warning when a device does not support setting the sample rate because this is perfectly valid for devices with a single rate or where rates are implicitly changed by selecting another alternate setting. Signed-off-by: Clemens Ladisch <clemens@ladisch.de> Signed-off-by: Takashi Iwai <tiwai@suse.de>
Diffstat (limited to 'sound')
-rw-r--r--sound/usb/clock.c5
1 files changed, 1 insertions, 4 deletions
diff --git a/sound/usb/clock.c b/sound/usb/clock.c
index 66bd1574d80..b853f8df794 100644
--- a/sound/usb/clock.c
+++ b/sound/usb/clock.c
@@ -204,11 +204,8 @@ static int set_sample_rate_v1(struct snd_usb_audio *chip, int iface,
204 ep = get_endpoint(alts, 0)->bEndpointAddress; 204 ep = get_endpoint(alts, 0)->bEndpointAddress;
205 205
206 /* if endpoint doesn't have sampling rate control, bail out */ 206 /* if endpoint doesn't have sampling rate control, bail out */
207 if (!(fmt->attributes & UAC_EP_CS_ATTR_SAMPLE_RATE)) { 207 if (!(fmt->attributes & UAC_EP_CS_ATTR_SAMPLE_RATE))
208 snd_printk(KERN_WARNING "%d:%d:%d: endpoint lacks sample rate attribute bit, cannot set.\n",
209 dev->devnum, iface, fmt->altsetting);
210 return 0; 208 return 0;
211 }
212 209
213 data[0] = rate; 210 data[0] = rate;
214 data[1] = rate >> 8; 211 data[1] = rate >> 8;