Skip to content

Commit

Permalink
ALSA: asihpi: Remove 2 unused functions
Browse files Browse the repository at this point in the history
Signed-off-by: Eliot Blennerhassett <eblennerhassett@audioscience.com>
Signed-off-by: Takashi Iwai <tiwai@suse.de>
  • Loading branch information
Eliot Blennerhassett authored and Takashi Iwai committed Apr 5, 2011
1 parent f3d145a commit 6027dfa
Showing 1 changed file with 0 additions and 27 deletions.
27 changes: 0 additions & 27 deletions sound/pci/asihpi/hpifunc.c
Original file line number Diff line number Diff line change
Expand Up @@ -105,33 +105,6 @@ u16 hpi_subsys_get_version_ex(u32 *pversion_ex)
return hr.error;
}

u16 hpi_subsys_create_adapter(const struct hpi_resource *p_resource,
u16 *pw_adapter_index)
{
struct hpi_message hm;
struct hpi_response hr;

hpi_init_message_response(&hm, &hr, HPI_OBJ_SUBSYSTEM,
HPI_SUBSYS_CREATE_ADAPTER);
hm.u.s.resource = *p_resource;

hpi_send_recv(&hm, &hr);

*pw_adapter_index = hr.u.s.adapter_index;
return hr.error;
}

u16 hpi_subsys_delete_adapter(u16 adapter_index)
{
struct hpi_message hm;
struct hpi_response hr;
hpi_init_message_response(&hm, &hr, HPI_OBJ_SUBSYSTEM,
HPI_SUBSYS_DELETE_ADAPTER);
hm.obj_index = adapter_index;
hpi_send_recv(&hm, &hr);
return hr.error;
}

u16 hpi_subsys_get_num_adapters(int *pn_num_adapters)
{
struct hpi_message hm;
Expand Down

0 comments on commit 6027dfa

Please sign in to comment.