mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/chenhuacai/linux-loongson
synced 2025-08-27 15:36:48 +00:00

Nothing calls snd_msndmidi_new() thus nothing sets chip->msndmidi_mpu The call to snd_msndmidi_input_read is gated on that being set, so snd_msndmidi_input_read() won't be called either. This is probably a missing call to snd_msndmidi_new(), but since this is ancient code, it's probably best to remove it (especially since I don't have the hardware to test it). Signed-off-by: Dr. David Alan Gilbert <linux@treblig.org> Link: https://patch.msgid.link/20250511172957.1001583-1-linux@treblig.org Signed-off-by: Takashi Iwai <tiwai@suse.de>
11 lines
328 B
Makefile
11 lines
328 B
Makefile
# SPDX-License-Identifier: GPL-2.0
|
|
|
|
snd-msnd-lib-y := msnd.o msnd_pinnacle_mixer.o
|
|
snd-msnd-pinnacle-y := msnd_pinnacle.o
|
|
snd-msnd-classic-y := msnd_classic.o
|
|
|
|
# Toplevel Module Dependency
|
|
obj-$(CONFIG_SND_MSND_PINNACLE) += snd-msnd-pinnacle.o snd-msnd-lib.o
|
|
obj-$(CONFIG_SND_MSND_CLASSIC) += snd-msnd-classic.o snd-msnd-lib.o
|
|
|