Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 24347
b: refs/heads/master
c: ed7cb19
h: refs/heads/master
i:
  24345: 1f19949
  24343: c36c2df
v: v3
  • Loading branch information
Bjorn Helgaas authored and Linus Torvalds committed Mar 27, 2006
1 parent 4865746 commit ace20a9
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 14 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: f301ae6a690abe7edd2f92fa6df0b1b06986a6ad
refs/heads/master: ed7cb1913168fdce6d084f2f5cd6818851313383
25 changes: 12 additions & 13 deletions trunk/sound/isa/cs423x/cs4236.c
Original file line number Diff line number Diff line change
Expand Up @@ -133,6 +133,7 @@ static int pnpc_registered;
static int pnp_registered;
#endif
#endif /* CONFIG_PNP */
static unsigned int snd_cs423x_devices;

struct snd_card_cs4236 {
struct snd_cs4231 *chip;
Expand Down Expand Up @@ -564,7 +565,7 @@ static int __init snd_cs423x_nonpnp_probe(struct platform_device *pdev)
snd_card_free(card);
return err;
}

platform_set_drvdata(pdev, card);
return 0;
}
Expand Down Expand Up @@ -650,6 +651,7 @@ static int __devinit snd_cs4232_pnpbios_detect(struct pnp_dev *pdev,
}
pnp_set_drvdata(pdev, card);
dev++;
snd_cs423x_devices++;
return 0;
}

Expand Down Expand Up @@ -713,6 +715,7 @@ static int __devinit snd_cs423x_pnpc_detect(struct pnp_card_link *pcard,
}
pnp_set_card_drvdata(pcard, card);
dev++;
snd_cs423x_devices++;
return 0;
}

Expand All @@ -721,7 +724,7 @@ static void __devexit snd_cs423x_pnpc_remove(struct pnp_card_link * pcard)
snd_card_free(pnp_get_card_drvdata(pcard));
pnp_set_card_drvdata(pcard, NULL);
}

#ifdef CONFIG_PM
static int snd_cs423x_pnpc_suspend(struct pnp_card_link *pcard, pm_message_t state)
{
Expand Down Expand Up @@ -766,7 +769,7 @@ static void __init_or_module snd_cs423x_unregister_all(void)

static int __init alsa_card_cs423x_init(void)
{
int i, err, cards = 0;
int i, err;

if ((err = platform_driver_register(&cs423x_nonpnp_driver)) < 0)
return err;
Expand All @@ -782,24 +785,20 @@ static int __init alsa_card_cs423x_init(void)
goto errout;
}
platform_devices[i] = device;
cards++;
snd_cs423x_devices++;
}
#ifdef CONFIG_PNP
#ifdef CS4232
i = pnp_register_driver(&cs4232_pnp_driver);
if (i >= 0) {
err = pnp_register_driver(&cs4232_pnp_driver);
if (!err)
pnp_registered = 1;
cards += i;
}
#endif
i = pnp_register_card_driver(&cs423x_pnpc_driver);
if (i >= 0) {
err = pnp_register_card_driver(&cs423x_pnpc_driver);
if (!err)
pnpc_registered = 1;
cards += i;
}
#endif /* CONFIG_PNP */

if (!cards) {
if (!snd_cs423x_devices) {
#ifdef MODULE
printk(KERN_ERR IDENT " soundcard not found or device busy\n");
#endif
Expand Down

0 comments on commit ace20a9

Please sign in to comment.