ALSA: usb-audio: Clean up the code in set_sample_rate_v2()
Just for cleaning up, introduce a new function get_sample_rate_v2() for replacing two identical calls in set_sample_rate_v2(). No functional change. Signed-off-by: Takashi Iwai <tiwai@suse.de>
This commit is contained in:
parent
efc33ce197
commit
7c51746517
1 changed files with 23 additions and 24 deletions
|
@ -247,6 +247,27 @@ static int set_sample_rate_v1(struct snd_usb_audio *chip, int iface,
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static int get_sample_rate_v2(struct snd_usb_audio *chip, int iface,
|
||||||
|
int altsetting, int clock)
|
||||||
|
{
|
||||||
|
struct usb_device *dev = chip->dev;
|
||||||
|
unsigned char data[4];
|
||||||
|
int err;
|
||||||
|
|
||||||
|
err = snd_usb_ctl_msg(dev, usb_rcvctrlpipe(dev, 0), UAC2_CS_CUR,
|
||||||
|
USB_TYPE_CLASS | USB_RECIP_INTERFACE | USB_DIR_IN,
|
||||||
|
UAC2_CS_CONTROL_SAM_FREQ << 8,
|
||||||
|
snd_usb_ctrl_intf(chip) | (clock << 8),
|
||||||
|
data, sizeof(data));
|
||||||
|
if (err < 0) {
|
||||||
|
snd_printk(KERN_WARNING "%d:%d:%d: cannot get freq (v2)\n",
|
||||||
|
dev->devnum, iface, altsetting);
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
return data[0] | (data[1] << 8) | (data[2] << 16) | (data[3] << 24);
|
||||||
|
}
|
||||||
|
|
||||||
static int set_sample_rate_v2(struct snd_usb_audio *chip, int iface,
|
static int set_sample_rate_v2(struct snd_usb_audio *chip, int iface,
|
||||||
struct usb_host_interface *alts,
|
struct usb_host_interface *alts,
|
||||||
struct audioformat *fmt, int rate)
|
struct audioformat *fmt, int rate)
|
||||||
|
@ -266,18 +287,7 @@ static int set_sample_rate_v2(struct snd_usb_audio *chip, int iface,
|
||||||
return -ENXIO;
|
return -ENXIO;
|
||||||
}
|
}
|
||||||
|
|
||||||
err = snd_usb_ctl_msg(dev, usb_rcvctrlpipe(dev, 0), UAC2_CS_CUR,
|
prev_rate = get_sample_rate_v2(chip, iface, fmt->altsetting, clock);
|
||||||
USB_TYPE_CLASS | USB_RECIP_INTERFACE | USB_DIR_IN,
|
|
||||||
UAC2_CS_CONTROL_SAM_FREQ << 8,
|
|
||||||
snd_usb_ctrl_intf(chip) | (clock << 8),
|
|
||||||
data, sizeof(data));
|
|
||||||
if (err < 0) {
|
|
||||||
snd_printk(KERN_WARNING "%d:%d:%d: cannot get freq (v2)\n",
|
|
||||||
dev->devnum, iface, fmt->altsetting);
|
|
||||||
prev_rate = 0;
|
|
||||||
} else {
|
|
||||||
prev_rate = data[0] | (data[1] << 8) | (data[2] << 16) | (data[3] << 24);
|
|
||||||
}
|
|
||||||
|
|
||||||
data[0] = rate;
|
data[0] = rate;
|
||||||
data[1] = rate >> 8;
|
data[1] = rate >> 8;
|
||||||
|
@ -293,18 +303,7 @@ static int set_sample_rate_v2(struct snd_usb_audio *chip, int iface,
|
||||||
return err;
|
return err;
|
||||||
}
|
}
|
||||||
|
|
||||||
err = snd_usb_ctl_msg(dev, usb_rcvctrlpipe(dev, 0), UAC2_CS_CUR,
|
cur_rate = get_sample_rate_v2(chip, iface, fmt->altsetting, clock);
|
||||||
USB_TYPE_CLASS | USB_RECIP_INTERFACE | USB_DIR_IN,
|
|
||||||
UAC2_CS_CONTROL_SAM_FREQ << 8,
|
|
||||||
snd_usb_ctrl_intf(chip) | (clock << 8),
|
|
||||||
data, sizeof(data));
|
|
||||||
if (err < 0) {
|
|
||||||
snd_printk(KERN_WARNING "%d:%d:%d: cannot get freq (v2)\n",
|
|
||||||
dev->devnum, iface, fmt->altsetting);
|
|
||||||
cur_rate = 0;
|
|
||||||
} else {
|
|
||||||
cur_rate = data[0] | (data[1] << 8) | (data[2] << 16) | (data[3] << 24);
|
|
||||||
}
|
|
||||||
|
|
||||||
if (cur_rate != rate) {
|
if (cur_rate != rate) {
|
||||||
snd_printd(KERN_WARNING
|
snd_printd(KERN_WARNING
|
||||||
|
|
Loading…
Add table
Reference in a new issue