]> www.infradead.org Git - users/jedix/linux-maple.git/commit
ALSA: scarlett2: Use USB API functions rather than constants
authorChen Ni <nichen@iscas.ac.cn>
Fri, 16 May 2025 07:04:16 +0000 (15:04 +0800)
committerTakashi Iwai <tiwai@suse.de>
Fri, 16 May 2025 07:56:46 +0000 (09:56 +0200)
commitf616e702a2093805e3d5b912c98743230f37699f
tree0555f5053ce6def05f1ff084674b328751e4a768
parent6f0ee1d220f5f3b31a2251f34a24656c503b58c4
ALSA: scarlett2: Use USB API functions rather than constants

Use the function usb_endpoint_num() rather than constants.

The Coccinelle semantic patch is as follows:

@@ struct usb_endpoint_descriptor *epd; @@

- (epd->bEndpointAddress & \(USB_ENDPOINT_NUMBER_MASK\|0x0f\))
+ usb_endpoint_num(epd)

Signed-off-by: Chen Ni <nichen@iscas.ac.cn>
Link: https://patch.msgid.link/20250516070416.12458-1-nichen@iscas.ac.cn
Signed-off-by: Takashi Iwai <tiwai@suse.de>
sound/usb/mixer_scarlett2.c