Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 111034
b: refs/heads/master
c: 418c8f8
h: refs/heads/master
v: v3
  • Loading branch information
Uwe Kleine-König authored and Jaroslav Kysela committed Sep 23, 2008
1 parent 52bf789 commit 08d8781
Show file tree
Hide file tree
Showing 2 changed files with 4 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: f7cf0a7ce56eb91752fa441cff2669f8d61d4e5e
refs/heads/master: 418c8f89911dd3d4930221def3bd56b38b051789
6 changes: 3 additions & 3 deletions trunk/sound/sh/aica.c
Original file line number Diff line number Diff line change
Expand Up @@ -590,7 +590,7 @@ static int __devinit add_aicamixer_controls(struct snd_card_aica
return 0;
}

static int snd_aica_remove(struct platform_device *devptr)
static int __devexit snd_aica_remove(struct platform_device *devptr)
{
struct snd_card_aica *dreamcastcard;
dreamcastcard = platform_get_drvdata(devptr);
Expand All @@ -602,7 +602,7 @@ static int snd_aica_remove(struct platform_device *devptr)
return 0;
}

static int __init snd_aica_probe(struct platform_device *devptr)
static int __devinit snd_aica_probe(struct platform_device *devptr)
{
int err;
struct snd_card_aica *dreamcastcard;
Expand Down Expand Up @@ -651,7 +651,7 @@ static int __init snd_aica_probe(struct platform_device *devptr)

static struct platform_driver snd_aica_driver = {
.probe = snd_aica_probe,
.remove = snd_aica_remove,
.remove = __devexit_p(snd_aica_remove),
.driver = {
.name = SND_AICA_DRIVER},
};
Expand Down

0 comments on commit 08d8781

Please sign in to comment.