diff options
author | Eliot Blennerhassett <eblennerhassett@audioscience.com> | 2011-02-09 23:25:55 -0500 |
---|---|---|
committer | Takashi Iwai <tiwai@suse.de> | 2011-02-10 12:21:05 -0500 |
commit | 0a1602c02be606b72003104dbf5f0f8293c42588 (patch) | |
tree | 2a446da7fe0a29920ec2f998b5d58e5c44f50144 /sound | |
parent | 5ed15dafa381d1bb7954c7cec0677c45814017f9 (diff) |
ALSA: asihpi - Poison adapter_index in message. Remove unused function.
Signed-off-by: Eliot Blennerhassett <eblennerhassett@audioscience.com>
Signed-off-by: Takashi Iwai <tiwai@suse.de>
Diffstat (limited to 'sound')
-rw-r--r-- | sound/pci/asihpi/hpimsginit.c | 18 |
1 files changed, 2 insertions, 16 deletions
diff --git a/sound/pci/asihpi/hpimsginit.c b/sound/pci/asihpi/hpimsginit.c index 8e1d099ed7e4..42f918220ee4 100644 --- a/sound/pci/asihpi/hpimsginit.c +++ b/sound/pci/asihpi/hpimsginit.c | |||
@@ -32,21 +32,6 @@ static u16 res_size[HPI_OBJ_MAXINDEX + 1] = HPI_RESPONSE_SIZE_BY_OBJECT; | |||
32 | static u16 gwSSX2_bypass; | 32 | static u16 gwSSX2_bypass; |
33 | 33 | ||
34 | /** \internal | 34 | /** \internal |
35 | * Used by ASIO driver to disable SSX2 for a single process | ||
36 | * \param phSubSys Pointer to HPI subsystem handle. | ||
37 | * \param wBypass New bypass setting 0 = off, nonzero = on | ||
38 | * \return Previous bypass setting. | ||
39 | */ | ||
40 | u16 hpi_subsys_ssx2_bypass(const struct hpi_hsubsys *ph_subsys, u16 bypass) | ||
41 | { | ||
42 | u16 old_value = gwSSX2_bypass; | ||
43 | |||
44 | gwSSX2_bypass = bypass; | ||
45 | |||
46 | return old_value; | ||
47 | } | ||
48 | |||
49 | /** \internal | ||
50 | * initialize the HPI message structure | 35 | * initialize the HPI message structure |
51 | */ | 36 | */ |
52 | static void hpi_init_message(struct hpi_message *phm, u16 object, | 37 | static void hpi_init_message(struct hpi_message *phm, u16 object, |
@@ -65,7 +50,8 @@ static void hpi_init_message(struct hpi_message *phm, u16 object, | |||
65 | phm->object = object; | 50 | phm->object = object; |
66 | phm->function = function; | 51 | phm->function = function; |
67 | phm->version = 0; | 52 | phm->version = 0; |
68 | /* Expect adapter index to be set by caller */ | 53 | phm->adapter_index = 0xFFFF; |
54 | /* Expect actual adapter index to be set by caller */ | ||
69 | } | 55 | } |
70 | 56 | ||
71 | /** \internal | 57 | /** \internal |