Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 24353
b: refs/heads/master
c: 51427ec
h: refs/heads/master
i:
  24351: 08fa7ec
v: v3
  • Loading branch information
Bjorn Helgaas authored and Linus Torvalds committed Mar 27, 2006
1 parent 7b19053 commit b2c64c1
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 5 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 5f53f4e2107fcfdd33da1cc34a86c9aef5e76af6
refs/heads/master: 51427ec0f222cb73b21f3849416a95d751bdd742
14 changes: 10 additions & 4 deletions trunk/sound/isa/als100.c
Original file line number Diff line number Diff line change
Expand Up @@ -199,7 +199,7 @@ static int __devinit snd_card_als100_pnp(int dev, struct snd_card_als100 *acard,
return 0;
}

static int __init snd_card_als100_probe(int dev,
static int __devinit snd_card_als100_probe(int dev,
struct pnp_card_link *pcard,
const struct pnp_card_device_id *pid)
{
Expand Down Expand Up @@ -281,6 +281,8 @@ static int __init snd_card_als100_probe(int dev,
return 0;
}

static unsigned int __devinitdata als100_devices;

static int __devinit snd_als100_pnp_detect(struct pnp_card_link *card,
const struct pnp_card_device_id *id)
{
Expand All @@ -294,6 +296,7 @@ static int __devinit snd_als100_pnp_detect(struct pnp_card_link *card,
if (res < 0)
return res;
dev++;
als100_devices++;
return 0;
}
return -ENODEV;
Expand Down Expand Up @@ -345,10 +348,13 @@ static struct pnp_card_driver als100_pnpc_driver = {

static int __init alsa_card_als100_init(void)
{
int cards;
int err;

err = pnp_register_card_driver(&als100_pnpc_driver);
if (err)
return err;

cards = pnp_register_card_driver(&als100_pnpc_driver);
if (cards <= 0) {
if (!als100_devices) {
pnp_unregister_card_driver(&als100_pnpc_driver);
#ifdef MODULE
snd_printk(KERN_ERR "no ALS100 based soundcards found\n");
Expand Down

0 comments on commit b2c64c1

Please sign in to comment.