aboutsummaryrefslogtreecommitdiffstats
path: root/sound/pci/asihpi/hpicmn.c
diff options
context:
space:
mode:
authorEliot Blennerhassett <eblennerhassett@audioscience.com>2011-02-10 17:26:09 +1300
committerTakashi Iwai <tiwai@suse.de>2011-02-10 18:49:31 +0100
commit2f918a6445218120a7b5e4ce6b6e76064ee8f846 (patch)
tree10b4bd183c3bcd94ef0110c5cfe3c83a5e77a781 /sound/pci/asihpi/hpicmn.c
parent1d595d2a2121b0db2b57656c685a164f38c0c8ae (diff)
downloadkernel_samsung_smdk4412-2f918a6445218120a7b5e4ce6b6e76064ee8f846.zip
kernel_samsung_smdk4412-2f918a6445218120a7b5e4ce6b6e76064ee8f846.tar.gz
kernel_samsung_smdk4412-2f918a6445218120a7b5e4ce6b6e76064ee8f846.tar.bz2
ALSA: asihpi - Replace adapter list with single item in subsys response.
Signed-off-by: Eliot Blennerhassett <eblennerhassett@audioscience.com> Signed-off-by: Takashi Iwai <tiwai@suse.de>
Diffstat (limited to 'sound/pci/asihpi/hpicmn.c')
-rw-r--r--sound/pci/asihpi/hpicmn.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/sound/pci/asihpi/hpicmn.c b/sound/pci/asihpi/hpicmn.c
index 4d696ab..e0a08f6 100644
--- a/sound/pci/asihpi/hpicmn.c
+++ b/sound/pci/asihpi/hpicmn.c
@@ -164,11 +164,10 @@ static void subsys_get_adapter(struct hpi_message *phm,
if (index < HPI_MAX_ADAPTERS) {
phr->u.s.adapter_index = adapters.adapter[index].index;
- phr->u.s.aw_adapter_list[0] =
- adapters.adapter[index].adapter_type;
+ phr->u.s.adapter_type = adapters.adapter[index].adapter_type;
} else {
phr->u.s.adapter_index = 0;
- phr->u.s.aw_adapter_list[0] = 0;
+ phr->u.s.adapter_type = 0;
phr->error = HPI_ERROR_BAD_ADAPTER_NUMBER;
}
}