]> Git Repo - linux.git/commitdiff
[PATCH] PNP: adjust pnp_register_card_driver() signature: ad1816a
authorBjorn Helgaas <[email protected]>
Mon, 27 Mar 2006 09:17:08 +0000 (01:17 -0800)
committerLinus Torvalds <[email protected]>
Mon, 27 Mar 2006 16:44:53 +0000 (08:44 -0800)
Remove the assumption that pnp_register_card_driver() returns the
number of devices claimed.

Signed-off-by: Bjorn Helgaas <[email protected]>
Cc: Adam Belay <[email protected]>
Cc: Jaroslav Kysela <[email protected]>
Acked-by: Takashi Iwai <[email protected]>
Signed-off-by: Andrew Morton <[email protected]>
Signed-off-by: Linus Torvalds <[email protected]>
sound/isa/ad1816a/ad1816a.c

index 7051f7798ed71aad4ea0d3cf0ad3cab24d04c9b4..31f299aed2817e914cd5d29d740db4ebcf188205 100644 (file)
@@ -262,6 +262,8 @@ static int __devinit snd_card_ad1816a_probe(int dev, struct pnp_card_link *pcard
        return 0;
 }
 
+static unsigned int __devinitdata ad1816a_devices;
+
 static int __devinit snd_ad1816a_pnp_detect(struct pnp_card_link *card,
                                            const struct pnp_card_device_id *id)
 {
@@ -275,6 +277,7 @@ static int __devinit snd_ad1816a_pnp_detect(struct pnp_card_link *card,
                if (res < 0)
                        return res;
                dev++;
+               ad1816a_devices++;
                return 0;
        }
         return -ENODEV;
@@ -297,10 +300,13 @@ static struct pnp_card_driver ad1816a_pnpc_driver = {
 
 static int __init alsa_card_ad1816a_init(void)
 {
-       int cards;
+       int err;
+
+       err = pnp_register_card_driver(&ad1816a_pnpc_driver);
+       if (err)
+               return err;
 
-       cards = pnp_register_card_driver(&ad1816a_pnpc_driver);
-       if (cards <= 0) {
+       if (!ad1816a_devices) {
                pnp_unregister_card_driver(&ad1816a_pnpc_driver);
 #ifdef MODULE
                printk(KERN_ERR "no AD1816A based soundcards found.\n");
This page took 0.049852 seconds and 4 git commands to generate.