Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

ALSA: ump: Fix a typo of snd_ump_stream_msg_device_info

s/devince/device/

It's used only internally, so no any behavior changes.

Fixes: 37e0e14128e0 ("ALSA: ump: Support UMP Endpoint and Function Block parsing")
Acked-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Link: https://patch.msgid.link/20250511141147.10246-1-tiwai@suse.de
Signed-off-by: Takashi Iwai <tiwai@suse.de>

+3 -3
+1 -1
drivers/usb/gadget/function/f_midi2.c
··· 475 475 /* reply a UMP EP device info */ 476 476 static void reply_ump_stream_ep_device(struct f_midi2_ep *ep) 477 477 { 478 - struct snd_ump_stream_msg_devince_info rep = { 478 + struct snd_ump_stream_msg_device_info rep = { 479 479 .type = UMP_MSG_TYPE_STREAM, 480 480 .status = UMP_STREAM_MSG_STATUS_DEVICE_INFO, 481 481 .manufacture_id = ep->info.manufacturer,
+2 -2
include/sound/ump_msg.h
··· 604 604 } __packed; 605 605 606 606 /* UMP Stream Message: Device Info Notification (128bit) */ 607 - struct snd_ump_stream_msg_devince_info { 607 + struct snd_ump_stream_msg_device_info { 608 608 #ifdef __BIG_ENDIAN_BITFIELD 609 609 /* 0 */ 610 610 u32 type:4; ··· 754 754 union snd_ump_stream_msg { 755 755 struct snd_ump_stream_msg_ep_discovery ep_discovery; 756 756 struct snd_ump_stream_msg_ep_info ep_info; 757 - struct snd_ump_stream_msg_devince_info device_info; 757 + struct snd_ump_stream_msg_device_info device_info; 758 758 struct snd_ump_stream_msg_stream_cfg stream_cfg; 759 759 struct snd_ump_stream_msg_fb_discovery fb_discovery; 760 760 struct snd_ump_stream_msg_fb_info fb_info;