Skip to content

Commit 4e9113c

Browse files
committed
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: 53837b4 ("ALSA: usb-audio: Replace slave/master terms") Signed-off-by: Takashi Iwai <tiwai@suse.de> Link: https://patch.msgid.link/20260225085233.316306-5-tiwai@suse.de Signed-off-by: Takashi Iwai <tiwai@suse.de>
1 parent c5bf24c commit 4e9113c

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

sound/usb/endpoint.c

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -160,8 +160,8 @@ int snd_usb_endpoint_implicit_feedback_sink(struct snd_usb_endpoint *ep)
160160
* This won't be used for implicit feedback which takes the packet size
161161
* returned from the sync source
162162
*/
163-
static int slave_next_packet_size(struct snd_usb_endpoint *ep,
164-
unsigned int avail)
163+
static int synced_next_packet_size(struct snd_usb_endpoint *ep,
164+
unsigned int avail)
165165
{
166166
unsigned int phase;
167167
int ret;
@@ -228,7 +228,7 @@ int snd_usb_endpoint_next_packet_size(struct snd_usb_endpoint *ep,
228228
}
229229

230230
if (ep->sync_source)
231-
return slave_next_packet_size(ep, avail);
231+
return synced_next_packet_size(ep, avail);
232232
else
233233
return next_packet_size(ep, avail);
234234
}

0 commit comments

Comments
 (0)