diff options
author | Takashi Iwai <tiwai@suse.de> | 2006-04-12 14:54:55 +0400 |
---|---|---|
committer | Jaroslav Kysela <perex@suse.cz> | 2006-06-22 23:32:41 +0400 |
commit | 79ca4f3f625e14212310f953b096e2e45110ac6b (patch) | |
tree | 04087def5cdfe7771b0369310cbdfcd4198c9811 /sound | |
parent | d7f6f1157f73dffe0a6afd12b90557e484b7fb35 (diff) | |
download | linux-79ca4f3f625e14212310f953b096e2e45110ac6b.tar.xz |
[ALSA] vxpocket - Fix a typo
Fix a typo of return value from vxpocket_config().
Signed-off-by: Takashi Iwai <tiwai@suse.de>
Diffstat (limited to 'sound')
-rw-r--r-- | sound/pcmcia/vx/vxpocket.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/pcmcia/vx/vxpocket.c b/sound/pcmcia/vx/vxpocket.c index 7e0cda2b6ef9..cafe6640cc1a 100644 --- a/sound/pcmcia/vx/vxpocket.c +++ b/sound/pcmcia/vx/vxpocket.c @@ -261,7 +261,7 @@ static int vxpocket_config(struct pcmcia_device *link) link->dev_node = &vxp->node; kfree(parse); - return 9; + return 0; cs_failed: cs_error(link, last_fn, last_ret); |