Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 24356
b: refs/heads/master
c: 6736a65
h: refs/heads/master
v: v3
  • Loading branch information
Bjorn Helgaas authored and Linus Torvalds committed Mar 27, 2006
1 parent f1318bd commit 6b15781
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 4 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: 07d58ad06b46e630a5ff6b10e9b81f370b175b56
refs/heads/master: 6736a6587b991477aae927c37176e8cab8689f9e
12 changes: 9 additions & 3 deletions trunk/sound/isa/dt019x.c
Original file line number Diff line number Diff line change
Expand Up @@ -272,6 +272,8 @@ static int __devinit snd_card_dt019x_probe(int dev, struct pnp_card_link *pcard,
return 0;
}

static unsigned int __devinitdata dt019x_devices;

static int __devinit snd_dt019x_pnp_probe(struct pnp_card_link *card,
const struct pnp_card_device_id *pid)
{
Expand All @@ -285,6 +287,7 @@ static int __devinit snd_dt019x_pnp_probe(struct pnp_card_link *card,
if (res < 0)
return res;
dev++;
dt019x_devices++;
return 0;
}
return -ENODEV;
Expand Down Expand Up @@ -336,10 +339,13 @@ static struct pnp_card_driver dt019x_pnpc_driver = {

static int __init alsa_card_dt019x_init(void)
{
int cards = 0;
int err;

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

cards = pnp_register_card_driver(&dt019x_pnpc_driver);
if (cards <= 0) {
if (!dt019x_devices) {
pnp_unregister_card_driver(&dt019x_pnpc_driver);
#ifdef MODULE
snd_printk(KERN_ERR "no DT-019X / ALS-007 based soundcards found\n");
Expand Down

0 comments on commit 6b15781

Please sign in to comment.