mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-08-29 06:55:45 -04:00
This commit adds Kconfig and Makefile entries for TASCAM US-144MKII USB audio/MIDI interface support. It includes the configuration option and links new driver files. The Kconfig entry for US-144MKII is added. The Makefile is updated to compile new driver components. The US-122L driver's device ID table is adjusted to remove the US-144MKII entry, as it will now be handled by its dedicated driver. Signed-off-by: Šerif Rami <ramiserifpersia@gmail.com> Signed-off-by: Takashi Iwai <tiwai@suse.de> Link: https://patch.msgid.link/20250814172222.9448-8-ramiserifpersia@gmail.com
8 lines
404 B
Makefile
8 lines
404 B
Makefile
# SPDX-License-Identifier: GPL-2.0
|
|
snd-usb-usx2y-y := usbusx2y.o usX2Yhwdep.o usx2yhwdeppcm.o
|
|
snd-usb-us122l-y := us122l.o
|
|
snd-usb-us144mkii-y := us144mkii.o us144mkii_pcm.o us144mkii_playback.o us144mkii_capture.o us144mkii_midi.o us144mkii_controls.o
|
|
|
|
obj-$(CONFIG_SND_USB_USX2Y) += snd-usb-usx2y.o
|
|
obj-$(CONFIG_SND_USB_US122L) += snd-usb-us122l.o
|
|
obj-$(CONFIG_SND_USB_US144MKII) += snd-usb-us144mkii.o
|