Skip to content

Commit

Permalink
[ALSA] vxpocket - Fix wrong index assignment
Browse files Browse the repository at this point in the history
Digigram VX Pocket driver
Fixed the wrong index number assignment.

Signed-off-by: Takashi Iwai <tiwai@suse.de>
  • Loading branch information
Takashi Iwai authored and Jaroslav Kysela committed Aug 30, 2005
1 parent 328ac7d commit adf111e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sound/pcmcia/vx/vxpocket.c
Original file line number Diff line number Diff line change
Expand Up @@ -407,7 +407,7 @@ static dev_link_t *vxpocket_attach(void)
return NULL;
}

vxp->index = index[i];
vxp->index = i;
card_alloc |= 1 << i;

/* Chain drivers */
Expand Down

0 comments on commit adf111e

Please sign in to comment.