[ALSA] vxpocket - Add missing event callback
Digigram VX Pocket driver Added the missing event callback. Signed-off-by: Takashi Iwai <tiwai@suse.de>
This commit is contained in:
parent
e0be4d32bd
commit
328ac7da6f
1 changed files with 5 additions and 4 deletions
|
@ -376,7 +376,7 @@ static int vxpocket_event(event_t event, int priority, event_callback_args_t *ar
|
||||||
|
|
||||||
/*
|
/*
|
||||||
*/
|
*/
|
||||||
static dev_link_t *vxp_attach(void)
|
static dev_link_t *vxpocket_attach(void)
|
||||||
{
|
{
|
||||||
snd_card_t *card;
|
snd_card_t *card;
|
||||||
struct snd_vxpocket *vxp;
|
struct snd_vxpocket *vxp;
|
||||||
|
@ -417,7 +417,7 @@ static dev_link_t *vxp_attach(void)
|
||||||
return &vxp->link;
|
return &vxp->link;
|
||||||
}
|
}
|
||||||
|
|
||||||
static void vxp_detach(dev_link_t *link)
|
static void vxpocket_detach(dev_link_t *link)
|
||||||
{
|
{
|
||||||
struct snd_vxpocket *vxp;
|
struct snd_vxpocket *vxp;
|
||||||
vx_core_t *chip;
|
vx_core_t *chip;
|
||||||
|
@ -458,8 +458,9 @@ static struct pcmcia_driver vxp_cs_driver = {
|
||||||
.drv = {
|
.drv = {
|
||||||
.name = "snd-vxpocket",
|
.name = "snd-vxpocket",
|
||||||
},
|
},
|
||||||
.attach = vxp_attach,
|
.attach = vxpocket_attach,
|
||||||
.detach = vxp_detach,
|
.detach = vxpocket_detach,
|
||||||
|
.event = vxpocket_event,
|
||||||
.id_table = vxp_ids,
|
.id_table = vxp_ids,
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue