Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 24358
b: refs/heads/master
c: 6a3a3a0
h: refs/heads/master
v: v3
  • Loading branch information
Bjorn Helgaas authored and Linus Torvalds committed Mar 27, 2006
1 parent 7fe6db6 commit 7a23254
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: fea9739f2a1aed1cfb9b7af7cce66b28b68d4394
refs/heads/master: 6a3a3a0260cf5a4e5942db8d56cae4db4dc139a6
12 changes: 9 additions & 3 deletions trunk/sound/isa/sb/es968.c
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ static int __devinit snd_card_es968_pnp(int dev, struct snd_card_es968 *acard,
return 0;
}

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

static unsigned int __devinitdata es968_devices;

static int __devinit snd_es968_pnp_detect(struct pnp_card_link *card,
const struct pnp_card_device_id *id)
{
Expand All @@ -195,6 +197,7 @@ static int __devinit snd_es968_pnp_detect(struct pnp_card_link *card,
if (res < 0)
return res;
dev++;
es968_devices++;
return 0;
}
return -ENODEV;
Expand Down Expand Up @@ -246,8 +249,11 @@ static struct pnp_card_driver es968_pnpc_driver = {

static int __init alsa_card_es968_init(void)
{
int cards = pnp_register_card_driver(&es968_pnpc_driver);
if (cards <= 0) {
int err = pnp_register_card_driver(&es968_pnpc_driver);
if (err)
return err;

if (!es968_devices) {
pnp_unregister_card_driver(&es968_pnpc_driver);
#ifdef MODULE
snd_printk(KERN_ERR "no ES968 based soundcards found\n");
Expand Down

0 comments on commit 7a23254

Please sign in to comment.