diff options
author | Takashi Iwai <tiwai@suse.de> | 2015-01-15 10:22:31 +0300 |
---|---|---|
committer | Takashi Iwai <tiwai@suse.de> | 2015-01-20 10:14:17 +0300 |
commit | ccddbe4a99536154e61d16c0f1c2df8a6d63f52a (patch) | |
tree | 440dbf9f275211e88b7594834041330f1ba2fb2b /sound/usb/line6/Makefile | |
parent | 0f2524b347b1ce16ce6a34cb194445e25bc6ae42 (diff) | |
download | linux-ccddbe4a99536154e61d16c0f1c2df8a6d63f52a.tar.xz |
ALSA: line6: Split to each driver
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>
Diffstat (limited to 'sound/usb/line6/Makefile')
-rw-r--r-- | sound/usb/line6/Makefile | 21 |
1 files changed, 13 insertions, 8 deletions
diff --git a/sound/usb/line6/Makefile b/sound/usb/line6/Makefile index ae5c374b0f87..fa3a78dac097 100644 --- a/sound/usb/line6/Makefile +++ b/sound/usb/line6/Makefile @@ -1,14 +1,19 @@ -obj-$(CONFIG_LINE6_USB) += line6usb.o - -line6usb-y := \ +snd-usb-line6-y := \ audio.o \ capture.o \ driver.o \ midi.o \ midibuf.o \ pcm.o \ - playback.o \ - pod.o \ - toneport.o \ - variax.o \ - podhd.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 |