From: Karsten Keil <keil@b1-systems.de>
To: linux-kernel@vger.kernel.org
Cc: netdev@vger.kernel.org, David Miller <davem@davemloft.net>,
i4ldeveloper@listserv.isdn4linux.de
Subject: [mISDN PATCH v2 00/19] mISDN patchset for next
Date: Fri, 22 May 2009 22:42:47 +0200 [thread overview]
Message-ID: <cover.1243024967.git.kkeil@pingi.linux-pingi.de> (raw)
This is a update of the mISDN driver for net-next.
It syncs the mISDN driver with the development on git.misdn.org.
More updates (new hardware support) will follow.
You can pull it from
git://master.kernel.org/pub/scm/linux/kernel/git/kkeil/ISDN-2.6-net-next.git for_dave
Andreas Eversberg (12):
Add watchdog functionality to hfcmulti driver
DSP now uses ring buffer for echo canceler
Echo canceler now gets delay information from hardware
Fixed missing spin lock on pipeline process
Added layer-1-hold feature
Fix DTMF locking bug issue
Hardware acceleration is now possible in conjunction with audio
recording
Fix TEI and SAPI handling
Add "sapi" information to debug messages
Add PCI ID for Junghanns 8S card
Added PCI ID for new Junghanns.net Single E1 cards.
Fix DTMF detection enable/disable
Arnaldo Carvalho de Melo (1):
Use kernel_{send,recv}msg instead of open coding
Frank Seidel (2):
Reduce stack size in dsp_cmx_send()
Add allocation of recvbuf[1500] at run time to reduce stack size
Karsten Keil (3):
Fix skb leak in error cases
Add XHFC support for embedded Speech-Design board to hfcmulti
Cleanup debug messages
Roel Kluin (1):
isdn: get_free_devid() failure ignored
drivers/isdn/hardware/mISDN/Kconfig | 11 +-
drivers/isdn/hardware/mISDN/hfc_multi.h | 47 ++-
drivers/isdn/hardware/mISDN/hfc_multi_8xx.h | 167 ++++++++
drivers/isdn/hardware/mISDN/hfcmulti.c | 614 ++++++++++++++++++---------
drivers/isdn/hardware/mISDN/hfcpci.c | 98 +++--
drivers/isdn/hardware/mISDN/hfcsusb.c | 4 +-
drivers/isdn/mISDN/core.c | 8 +-
drivers/isdn/mISDN/dsp.h | 19 +-
drivers/isdn/mISDN/dsp_audio.c | 5 +-
drivers/isdn/mISDN/dsp_cmx.c | 115 ++++--
drivers/isdn/mISDN/dsp_core.c | 72 ++--
drivers/isdn/mISDN/dsp_dtmf.c | 3 +
drivers/isdn/mISDN/dsp_ecdis.h | 2 +-
drivers/isdn/mISDN/dsp_pipeline.c | 5 +-
drivers/isdn/mISDN/dsp_tones.c | 23 +-
drivers/isdn/mISDN/hwchannel.c | 4 +-
drivers/isdn/mISDN/l1oip.h | 2 +-
drivers/isdn/mISDN/l1oip_codec.c | 1 +
drivers/isdn/mISDN/l1oip_core.c | 71 ++--
drivers/isdn/mISDN/layer2.c | 37 +-
drivers/isdn/mISDN/layer2.h | 2 +-
drivers/isdn/mISDN/socket.c | 45 ++-
drivers/isdn/mISDN/tei.c | 80 +++--
drivers/isdn/mISDN/timerdev.c | 2 +-
include/linux/mISDNdsp.h | 4 +-
include/linux/mISDNhw.h | 2 +-
include/linux/mISDNif.h | 19 +-
include/linux/pci_ids.h | 2 +
28 files changed, 994 insertions(+), 470 deletions(-)
create mode 100644 drivers/isdn/hardware/mISDN/hfc_multi_8xx.h
next reply other threads:[~2009-05-22 20:42 UTC|newest]
Thread overview: 25+ messages / expand[flat|nested] mbox.gz Atom feed top
2009-05-22 20:42 Karsten Keil [this message]
2009-05-22 21:04 ` [mISDN PATCH v2 01/19] Add watchdog functionality to hfcmulti driver Karsten Keil
2009-05-22 21:04 ` [mISDN PATCH v2 02/19] DSP now uses ring buffer for echo canceler Karsten Keil
2009-05-22 21:04 ` [mISDN PATCH v2 03/19] Echo canceler now gets delay information from hardware Karsten Keil
2009-05-22 21:04 ` [mISDN PATCH v2 04/19] Fixed missing spin lock on pipeline process Karsten Keil
2009-05-22 21:04 ` [mISDN PATCH v2 05/19] Reduce stack size in dsp_cmx_send() Karsten Keil
2009-05-22 21:04 ` [mISDN PATCH v2 06/19] Added layer-1-hold feature Karsten Keil
2009-05-22 21:04 ` [mISDN PATCH v2 09/19] Fix TEI and SAPI handling Karsten Keil
2009-05-22 21:53 ` Sam Ravnborg
2009-05-23 13:00 ` Karsten Keil
2009-05-23 23:10 ` Sam Ravnborg
2009-05-24 15:39 ` Karsten Keil
[not found] ` <cover.1243024967.git.kkeil-Zw2aQviYsaUCyFmpLCWB8V3+hHH5wKcB@public.gmane.org>
2009-05-22 21:04 ` [mISDN PATCH v2 07/19] Fix DTMF locking bug issue Karsten Keil
2009-05-22 21:04 ` [mISDN PATCH v2 08/19] Hardware acceleration is now possible in conjunction with audio recording Karsten Keil
2009-05-22 21:04 ` [mISDN PATCH v2 11/19] Add allocation of recvbuf[1500] at run time to reduce stack size Karsten Keil
2009-05-22 21:04 ` [mISDN PATCH v2 10/19] Add "sapi" information to debug messages Karsten Keil
2009-05-22 21:04 ` [mISDN PATCH v2 12/19] Fix skb leak in error cases Karsten Keil
2009-05-22 21:04 ` [mISDN PATCH v2 14/19] Add XHFC support for embedded Speech-Design board to hfcmulti Karsten Keil
2009-05-22 21:04 ` [mISDN PATCH v2 13/19] isdn: get_free_devid() failure ignored Karsten Keil
2009-05-22 21:04 ` [mISDN PATCH v2 15/19] Add PCI ID for Junghanns 8S card Karsten Keil
2009-05-22 21:04 ` [mISDN PATCH v2 16/19] Added PCI ID for new Junghanns.net Single E1 cards Karsten Keil
2009-05-22 21:04 ` [mISDN PATCH v2 17/19] Cleanup debug messages Karsten Keil
2009-05-22 21:04 ` [mISDN PATCH v2 18/19] Use kernel_{send, recv}msg instead of open coding Karsten Keil
2009-05-22 21:04 ` [mISDN PATCH v2 19/19] Fix DTMF detection enable/disable Karsten Keil
2009-05-25 7:53 ` [mISDN PATCH v2 00/19] mISDN patchset for next David Miller
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=cover.1243024967.git.kkeil@pingi.linux-pingi.de \
--to=keil@b1-systems.de \
--cc=davem@davemloft.net \
--cc=i4ldeveloper@listserv.isdn4linux.de \
--cc=linux-kernel@vger.kernel.org \
--cc=netdev@vger.kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).