diff options
author | Arnaud Patard <arnaud.patard@rtp-net.org> | 2010-04-22 10:47:45 +0200 |
---|---|---|
committer | Ben Dooks <ben-linux@fluff.org> | 2010-05-06 00:07:50 +0900 |
commit | 1f138f13890afc824443a9cfcebe9ecae7727666 (patch) | |
tree | ce18135840b6a69238746f4f873823a8bb9fb551 /arch/arm | |
parent | f44c67cdc3182dd59cae299488687c6280027410 (diff) |
ARM: S3C24XX: s3c24xx_mci_set_platdata should be marked __init
The s3c24xx_mci_set_platdata() is init time only, so should
be marked as __init
Signed-off-by: Arnaud Patard <arnaud.patard@rtp-net.org>
[ben-linux@fluff.org: update description]
Signed-off-by: Ben Dooks <ben-linux@fluff.org>
Diffstat (limited to 'arch/arm')
-rw-r--r-- | arch/arm/plat-s3c24xx/devs.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/plat-s3c24xx/devs.c b/arch/arm/plat-s3c24xx/devs.c index 429e4532138..b9565c1eb41 100644 --- a/arch/arm/plat-s3c24xx/devs.c +++ b/arch/arm/plat-s3c24xx/devs.c @@ -376,7 +376,7 @@ struct platform_device s3c_device_sdi = { EXPORT_SYMBOL(s3c_device_sdi); -void s3c24xx_mci_set_platdata(struct s3c24xx_mci_pdata *pdata) +void __init s3c24xx_mci_set_platdata(struct s3c24xx_mci_pdata *pdata) { struct s3c24xx_mci_pdata *npd; |