All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 00/15] ALSA: asihpi - update from HPI 4.06 to 4.08
@ 2011-07-22  3:52 linux
  2011-07-22  3:52 ` [PATCH 01/15] ALSA: asihpi - Give more meaningful name to hpi request message type linux
                   ` (32 more replies)
  0 siblings, 33 replies; 36+ messages in thread
From: linux @ 2011-07-22  3:52 UTC (permalink / raw)
  To: patch; +Cc: tiwai, Eliot Blennerhassett, alsa-devel

From: Eliot Blennerhassett <eblennerhassett@audioscience.com>

Main visible change is the addition of mute switch to volume controls.
The rest are relatively minor changes and cleanups to HPI code.

patch#6 reverts commit 4a122c10f  "check adapter index in hpi_ioctl"

The associated 4.08 firmware release adds support for new cards
ASI5544/5541/5540/5520

Eliot Blennerhassett (15):
  ALSA: asihpi - Give more meaningful name to hpi request message type
  ALSA: asihpi - Increase request and response buffer sizes
  ALSA: asihpi - Remove controlex structs and associated special data
    transfer code
  ALSA: asihpi - DSP code loader API now independent of OS
  ALSA: asihpi - Revise snd_pcm_debug_name, get rid of DEBUG_NAME macro
  ALSA: asihpi - Remove spurious adapter index check
  ALSA: asihpi - Remove unused structures, macros and functions
  ALSA: asihpi - Fix minor typos and spelling
  ALSA: asihpi - Make local function static
  ALSA: asihpi - Add new node and message defines
  ALSA: asihpi - Explicitly include mutex.h
  ALSA: asihpi - Use size_t for sizeof result
  ALSA: asihpi - Control name updates
  ALSA: asihpi - Add volume mute controls
  ALSA: asihpi - HPI version 4.08

 sound/pci/asihpi/asihpi.c       |   87 ++++++++++++++++++----
 sound/pci/asihpi/hpi.h          |   24 ++++--
 sound/pci/asihpi/hpi6000.c      |   11 +--
 sound/pci/asihpi/hpi6205.c      |   52 ++++---------
 sound/pci/asihpi/hpi6205.h      |   25 +++++--
 sound/pci/asihpi/hpi_internal.h |  155 ++++++++++----------------------------
 sound/pci/asihpi/hpicmn.c       |   17 ++--
 sound/pci/asihpi/hpidspcd.c     |  137 ++++++++++++++--------------------
 sound/pci/asihpi/hpidspcd.h     |   72 ++++++++++--------
 sound/pci/asihpi/hpifunc.c      |   86 ++++++++++-----------
 sound/pci/asihpi/hpimsginit.c   |    4 +-
 sound/pci/asihpi/hpimsgx.c      |    6 +-
 sound/pci/asihpi/hpioctl.c      |   10 +--
 sound/pci/asihpi/hpios.c        |    8 --
 sound/pci/asihpi/hpios.h        |    1 +
 15 files changed, 319 insertions(+), 376 deletions(-)

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

end of thread, other threads:[~2011-07-22  6:06 UTC | newest]

Thread overview: 36+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-07-22  3:52 [PATCH 00/15] ALSA: asihpi - update from HPI 4.06 to 4.08 linux
2011-07-22  3:52 ` [PATCH 01/15] ALSA: asihpi - Give more meaningful name to hpi request message type linux
2011-07-22  3:52 ` [PATCH 01/15] " linux
2011-07-22  3:52 ` [PATCH 02/15] ALSA: asihpi - Increase request and response buffer sizes linux
2011-07-22  3:52 ` [PATCH 02/15] " linux
2011-07-22  3:52 ` [PATCH 03/15] ALSA: asihpi - Remove controlex structs and associated special data transfer code linux
2011-07-22  3:52 ` [PATCH 03/15] " linux
2011-07-22  3:52 ` [PATCH 04/15] ALSA: asihpi - DSP code loader API now independent of OS linux
2011-07-22  5:56   ` Takashi Iwai
2011-07-22  3:52 ` [PATCH 04/15] " linux
2011-07-22  3:52 ` [PATCH 05/15] ALSA: asihpi - Revise snd_pcm_debug_name, get rid of DEBUG_NAME macro linux
2011-07-22  3:52 ` [PATCH 05/15] " linux
2011-07-22  3:52 ` [PATCH 06/15] ALSA: asihpi - Remove spurious adapter index check linux
2011-07-22  3:52 ` [PATCH 06/15] " linux
2011-07-22  3:52 ` [PATCH 07/15] ALSA: asihpi - Remove unused structures, macros and functions linux
2011-07-22  3:52 ` [PATCH 07/15] " linux
2011-07-22  3:52 ` [PATCH 08/15] ALSA: asihpi - Fix minor typos and spelling linux
2011-07-22  3:52 ` [PATCH 08/15] " linux
2011-07-22  3:52 ` [PATCH 09/15] ALSA: asihpi - Make local function static linux
2011-07-22  3:52 ` [PATCH 09/15] " linux
2011-07-22  3:52 ` [PATCH 10/15] Add new node and message defines linux
2011-07-22  3:52 ` [PATCH 10/15] ALSA: asihpi - " linux
2011-07-22  3:52 ` [PATCH 11/15] ALSA: asihpi - Explicitly include mutex.h linux
2011-07-22  3:52 ` [PATCH 11/15] " linux
2011-07-22  3:52 ` [PATCH 12/15] ALSA: asihpi - Use size_t for sizeof result linux
2011-07-22  3:52 ` [PATCH 12/15] " linux
2011-07-22  3:53 ` [PATCH 13/15] ALSA: asihpi - Control name updates linux
2011-07-22  3:53 ` [PATCH 13/15] " linux
2011-07-22  3:53 ` [PATCH 14/15] Add volume mute controls linux
2011-07-22  3:53 ` [PATCH 14/15] ALSA: asihpi - " linux
2011-07-22  6:01   ` Takashi Iwai
2011-07-22  3:53 ` [PATCH 15/15] ALSA: asihpi - HPI version 4.08 linux
2011-07-22  3:53 ` [PATCH 15/15] " linux
2011-07-22  4:04 ` Please ignore duplicates Eliot Blennerhassett
2011-07-22  6:03 ` [PATCH 00/15] ALSA: asihpi - update from HPI 4.06 to 4.08 Takashi Iwai
     [not found] ` <4E28F717.90204@audioscience.com>
2011-07-22  6:06   ` asihpi - update from HPI 4.06 to 4.08 - Firmware Takashi Iwai

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.