dect
/
linux-2.6
Archived
13
0
Fork 0

[ALSA] sound/pcmcia/vx/vxpocket.c: fix an if() condition

It seems noone ever tried to use this driver with more than one device.

Signed-off-by: Adrian Bunk <bunk@stusta.de>
Signed-off-by: Takashi Iwai <tiwai@suse.de>
Signed-off-by: Jaroslav Kysela <perex@suse.cz>
This commit is contained in:
Adrian Bunk 2007-05-02 12:07:55 +02:00 committed by Jaroslav Kysela
parent 82c8c74107
commit 27fe0f4b98
1 changed files with 1 additions and 1 deletions

View File

@ -297,7 +297,7 @@ static int vxpocket_probe(struct pcmcia_device *p_dev)
/* find an empty slot from the card list */
for (i = 0; i < SNDRV_CARDS; i++) {
if (! card_alloc & (1 << i))
if (!(card_alloc & (1 << i)))
break;
}
if (i >= SNDRV_CARDS) {