diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2008-07-26 20:19:41 -0700 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2008-07-26 20:19:41 -0700 |
commit | 5c7c204aeca51ccfad63caab4fcdc5d8026c0fd8 (patch) | |
tree | 4bfd5f4455b706c9ba86a8925bf367f437d16336 /drivers/isdn/mISDN/Makefile | |
parent | 228428428138e231a155464239880201e5cc8b44 (diff) | |
parent | 3712b42d4b1bec29a4232a6673bf2e6dcc5faa68 (diff) | |
download | kernel-crypto-5c7c204aeca51ccfad63caab4fcdc5d8026c0fd8.tar.gz kernel-crypto-5c7c204aeca51ccfad63caab4fcdc5d8026c0fd8.tar.xz kernel-crypto-5c7c204aeca51ccfad63caab4fcdc5d8026c0fd8.zip |
Merge git://git.kernel.org/pub/scm/linux/kernel/git/kkeil/ISDN-2.6
* git://git.kernel.org/pub/scm/linux/kernel/git/kkeil/ISDN-2.6:
Add layer1 over IP support
Add mISDN HFC multiport driver
Add mISDN HFC PCI driver
Add mISDN DSP
Add mISDN core files
Define AF_ISDN and PF_ISDN
Add mISDN driver
Diffstat (limited to 'drivers/isdn/mISDN/Makefile')
-rw-r--r-- | drivers/isdn/mISDN/Makefile | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/drivers/isdn/mISDN/Makefile b/drivers/isdn/mISDN/Makefile new file mode 100644 index 00000000000..1cb5e633cf7 --- /dev/null +++ b/drivers/isdn/mISDN/Makefile @@ -0,0 +1,13 @@ +# +# Makefile for the modular ISDN driver +# + +obj-$(CONFIG_MISDN) += mISDN_core.o +obj-$(CONFIG_MISDN_DSP) += mISDN_dsp.o +obj-$(CONFIG_MISDN_L1OIP) += l1oip.o + +# multi objects + +mISDN_core-objs := core.o fsm.o socket.o hwchannel.o stack.o layer1.o layer2.o tei.o timerdev.o +mISDN_dsp-objs := dsp_core.o dsp_cmx.o dsp_tones.o dsp_dtmf.o dsp_audio.o dsp_blowfish.o dsp_pipeline.o dsp_hwec.o +l1oip-objs := l1oip_core.o l1oip_codec.o |