mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-11 12:28:41 +08:00
[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:
parent
82c8c74107
commit
27fe0f4b98
@ -297,7 +297,7 @@ static int vxpocket_probe(struct pcmcia_device *p_dev)
|
|||||||
|
|
||||||
/* find an empty slot from the card list */
|
/* find an empty slot from the card list */
|
||||||
for (i = 0; i < SNDRV_CARDS; i++) {
|
for (i = 0; i < SNDRV_CARDS; i++) {
|
||||||
if (! card_alloc & (1 << i))
|
if (!(card_alloc & (1 << i)))
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
if (i >= SNDRV_CARDS) {
|
if (i >= SNDRV_CARDS) {
|
||||||
|
Loading…
Reference in New Issue
Block a user