diff options
author | Andreas Schwab <schwab@suse.de> | 2006-04-23 20:32:41 +0200 |
---|---|---|
committer | Paul Mackerras <paulus@samba.org> | 2006-04-28 21:04:30 +1000 |
commit | d882995c054ff90706cc339321bfb04b15c5581f (patch) | |
tree | 5e798e251f5ca45b668e428d72cda92ed4c03029 /sound/ppc | |
parent | f709bfac48492e289ba78ea1e8c0b3daab264e90 (diff) |
[PATCH] sound/ppc: snd_pmac_toonie_init should be __init
snd_pmac_toonie_init is only called by __init code and calls __init code
itself.
Signed-off-by: Andreas Schwab <schwab@suse.de>
Signed-off-by: Paul Mackerras <paulus@samba.org>
Diffstat (limited to 'sound/ppc')
-rw-r--r-- | sound/ppc/toonie.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/ppc/toonie.c b/sound/ppc/toonie.c index 4e595172e423..1ac7c8552f50 100644 --- a/sound/ppc/toonie.c +++ b/sound/ppc/toonie.c @@ -335,7 +335,7 @@ static void toonie_cleanup(struct snd_pmac *chip) chip->mixer_data = NULL; } -int snd_pmac_toonie_init(struct snd_pmac *chip) +int __init snd_pmac_toonie_init(struct snd_pmac *chip) { struct pmac_toonie *mix; |