linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 00/19] mISDN update for linux-next
@ 2009-05-19 13:27 Karsten Keil
  2009-05-19 13:58 ` [PATCH 01/19] Add XHFC support for embedded Speech-Design board to hfcmulti Karsten Keil
                   ` (19 more replies)
  0 siblings, 20 replies; 31+ messages in thread
From: Karsten Keil @ 2009-05-19 13:27 UTC (permalink / raw)
  To: linux-kernel; +Cc: Stephen Rothwell, i4ldeveloper

This is a update of the mISDN driver for linux-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-next.git master


Andreas Eversberg (14):
  Add XHFC support for embedded Speech-Design board to hfcmulti
  Fix bug in XHFC registering
  Add PCI ID for Junghanns 8S card
  Add watchdog functionality to hfcmulti driver
  DSP now uses ring buffer for echo canceler
  Fix hfcmulti's PCI IRQ bug during init
  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
  Added PCI ID for new Junghanns.net Single E1 cards.

Frank Seidel (2):
  Reduce stack size in dsp_cmx_send()
  Add allocation of recvbuf[1500] at run time to reduce stack size

Karsten Keil (2):
  Fix skb leak in error cases
  Cleanup debug messages

Roel Kluin (1):
  isdn: get_free_devid() failure ignored

 drivers/isdn/hardware/mISDN/hfc_multi.h |   75 +++-
 drivers/isdn/hardware/mISDN/hfcmulti.c  |  711 +++++++++++++++++++++++--------
 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                |   18 +-
 drivers/isdn/mISDN/dsp_audio.c          |    5 +-
 drivers/isdn/mISDN/dsp_cmx.c            |  115 ++++--
 drivers/isdn/mISDN/dsp_core.c           |   70 ++--
 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_codec.c        |    1 +
 drivers/isdn/mISDN/l1oip_core.c         |   51 ++-
 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 +
 24 files changed, 965 insertions(+), 418 deletions(-)


^ permalink raw reply	[flat|nested] 31+ messages in thread

end of thread, other threads:[~2009-05-20 19:38 UTC | newest]

Thread overview: 31+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-05-19 13:27 [PATCH 00/19] mISDN update for linux-next Karsten Keil
2009-05-19 13:58 ` [PATCH 01/19] Add XHFC support for embedded Speech-Design board to hfcmulti Karsten Keil
2009-05-19 19:11   ` David Miller
2009-05-20  3:13     ` Marcel Holtmann
2009-05-20  9:12       ` Karsten Keil
2009-05-20 19:38         ` David Miller
2009-05-20  7:56   ` Andi Kleen
2009-05-20  9:19     ` Karsten Keil
2009-05-20 11:38       ` Andi Kleen
2009-05-20 12:18         ` Karsten Keil
2009-05-20 16:59           ` Karsten Keil
2009-05-19 13:58 ` [PATCH 03/19] Add PCI ID for Junghanns 8S card Karsten Keil
2009-05-19 13:58 ` [PATCH 02/19] Fix bug in XHFC registering Karsten Keil
2009-05-19 13:58 ` [PATCH 04/19] Add watchdog functionality to hfcmulti driver Karsten Keil
2009-05-19 13:58 ` [PATCH 05/19] DSP now uses ring buffer for echo canceler Karsten Keil
2009-05-19 13:58 ` [PATCH 06/19] Fix hfcmulti's PCI IRQ bug during init Karsten Keil
2009-05-19 13:58 ` [PATCH 07/19] Echo canceler now gets delay information from hardware Karsten Keil
2009-05-19 13:58 ` [PATCH 08/19] Fixed missing spin lock on pipeline process Karsten Keil
2009-05-19 13:58 ` [PATCH 09/19] Reduce stack size in dsp_cmx_send() Karsten Keil
2009-05-19 13:58 ` [PATCH 10/19] Added layer-1-hold feature Karsten Keil
2009-05-19 13:58 ` [PATCH 11/19] Fix DTMF locking bug issue Karsten Keil
2009-05-19 13:58 ` [PATCH 12/19] Hardware acceleration is now possible in conjunction with audio recording Karsten Keil
2009-05-19 13:58 ` [PATCH 13/19] Fix TEI and SAPI handling Karsten Keil
2009-05-19 13:58 ` [PATCH 14/19] Add "sapi" information to debug messages Karsten Keil
2009-05-19 13:58 ` [PATCH 15/19] Added PCI ID for new Junghanns.net Single E1 cards Karsten Keil
2009-05-19 13:58 ` [PATCH 16/19] Add allocation of recvbuf[1500] at run time to reduce stack size Karsten Keil
2009-05-19 13:58 ` [PATCH 17/19] Fix skb leak in error cases Karsten Keil
2009-05-19 13:58 ` [PATCH 18/19] Cleanup debug messages Karsten Keil
2009-05-19 13:58 ` [PATCH 19/19] isdn: get_free_devid() failure ignored Karsten Keil
2009-05-19 22:22 ` [PATCH 00/19] mISDN update for linux-next Stephen Rothwell
2009-05-20  1:42   ` Stephen Rothwell

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).