mirror of
https://github.com/FEX-Emu/linux.git
synced 2024-12-29 13:00:35 +00:00
ccddbe4a99
Split to each individual driver for POD, PODHD, TonePort and Variax with a core LINE6 helper module. The new modules follow the standard ALSA naming rule with snd prefix: snd-usb-pod, snd-usb-podhd, snd-usb-toneport and snd-usb-variax, together with the corresponding CONFIG_SND_USB_* Kconfig items. Tested-by: Chris Rorvick <chris@rorvick.com> Signed-off-by: Takashi Iwai <tiwai@suse.de>
20 lines
466 B
Makefile
20 lines
466 B
Makefile
snd-usb-line6-y := \
|
|
audio.o \
|
|
capture.o \
|
|
driver.o \
|
|
midi.o \
|
|
midibuf.o \
|
|
pcm.o \
|
|
playback.o
|
|
|
|
snd-usb-pod-y := pod.o
|
|
snd-usb-podhd-y := podhd.o
|
|
snd-usb-toneport-y := toneport.o
|
|
snd-usb-variax-y := variax.o
|
|
|
|
obj-$(CONFIG_SND_USB_LINE6) += snd-usb-line6.o
|
|
obj-$(CONFIG_SND_USB_POD) += snd-usb-pod.o
|
|
obj-$(CONFIG_SND_USB_PODHD) += snd-usb-podhd.o
|
|
obj-$(CONFIG_SND_USB_TONEPORT) += snd-usb-toneport.o
|
|
obj-$(CONFIG_SND_USB_VARIAX) += snd-usb-variax.o
|