mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-11 12:28:41 +08:00
ALSA: usb-audio: remove unused parameter from sync_ep_set_params
Since the format is not actually used in sync_ep_set_params(), there is no need to pass it down. Signed-off-by: Eldad Zack <eldad@fogrefinery.com> Signed-off-by: Takashi Iwai <tiwai@suse.de>
This commit is contained in:
parent
d2724de187
commit
9372103990
@ -714,8 +714,7 @@ out_of_memory:
|
||||
/*
|
||||
* configure a sync endpoint
|
||||
*/
|
||||
static int sync_ep_set_params(struct snd_usb_endpoint *ep,
|
||||
struct audioformat *fmt)
|
||||
static int sync_ep_set_params(struct snd_usb_endpoint *ep)
|
||||
{
|
||||
int i;
|
||||
|
||||
@ -812,7 +811,7 @@ int snd_usb_endpoint_set_params(struct snd_usb_endpoint *ep,
|
||||
buffer_periods, fmt, sync_ep);
|
||||
break;
|
||||
case SND_USB_ENDPOINT_TYPE_SYNC:
|
||||
err = sync_ep_set_params(ep, fmt);
|
||||
err = sync_ep_set_params(ep);
|
||||
break;
|
||||
default:
|
||||
err = -EINVAL;
|
||||
|
Loading…
Reference in New Issue
Block a user