Commit 4e9113c5 authored by Takashi Iwai's avatar Takashi Iwai
Browse files

ALSA: usb-audio: Use inclusive terms



Replace the remaining with inclusive terms; it's only this function
name we overlooked at the previous conversion.

Fixes: 53837b4a ("ALSA: usb-audio: Replace slave/master terms")
Signed-off-by: default avatarTakashi Iwai <tiwai@suse.de>
Link: https://patch.msgid.link/20260225085233.316306-5-tiwai@suse.de


Signed-off-by: default avatarTakashi Iwai <tiwai@suse.de>
parent c5bf24c8
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -160,7 +160,7 @@ int snd_usb_endpoint_implicit_feedback_sink(struct snd_usb_endpoint *ep)
 * This won't be used for implicit feedback which takes the packet size
 * returned from the sync source
 */
static int slave_next_packet_size(struct snd_usb_endpoint *ep,
static int synced_next_packet_size(struct snd_usb_endpoint *ep,
				   unsigned int avail)
{
	unsigned int phase;
@@ -228,7 +228,7 @@ int snd_usb_endpoint_next_packet_size(struct snd_usb_endpoint *ep,
	}

	if (ep->sync_source)
		return slave_next_packet_size(ep, avail);
		return synced_next_packet_size(ep, avail);
	else
		return next_packet_size(ep, avail);
}