diff options
author | Stepan Moskovchenko <stepanm@codeaurora.org> | 2010-11-12 22:29:53 -0500 |
---|---|---|
committer | Daniel Walker <dwalker@codeaurora.org> | 2010-11-30 17:03:36 -0500 |
commit | 516cbc793eb4be5123289d067b54dfcdabeddb25 (patch) | |
tree | e2c970c0b16c9a80a2b542446cdc9e5a850eb672 /arch/arm/mach-msm/devices-msm8x60-iommu.c | |
parent | e8952e3b32701817705b216b492a9be4fa5cbefc (diff) |
msm: iommu: Mark functions with the right section names
Mark the init and exit functions as __init and __exit where
appropriate.
Signed-off-by: Stepan Moskovchenko <stepanm@codeaurora.org>
Signed-off-by: Daniel Walker <dwalker@codeaurora.org>
Diffstat (limited to 'arch/arm/mach-msm/devices-msm8x60-iommu.c')
-rw-r--r-- | arch/arm/mach-msm/devices-msm8x60-iommu.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/arm/mach-msm/devices-msm8x60-iommu.c b/arch/arm/mach-msm/devices-msm8x60-iommu.c index a6ecd39ae069..f9e7bd34ec59 100644 --- a/arch/arm/mach-msm/devices-msm8x60-iommu.c +++ b/arch/arm/mach-msm/devices-msm8x60-iommu.c | |||
@@ -826,7 +826,7 @@ static struct msm_iommu_ctx_dev *msm_iommu_ctx_data[] = { | |||
826 | &gfx2d1_2d1_ctx, | 826 | &gfx2d1_2d1_ctx, |
827 | }; | 827 | }; |
828 | 828 | ||
829 | static int msm8x60_iommu_init(void) | 829 | static int __init msm8x60_iommu_init(void) |
830 | { | 830 | { |
831 | int ret, i; | 831 | int ret, i; |
832 | 832 | ||
@@ -886,7 +886,7 @@ failure: | |||
886 | return ret; | 886 | return ret; |
887 | } | 887 | } |
888 | 888 | ||
889 | static void msm8x60_iommu_exit(void) | 889 | static void __exit msm8x60_iommu_exit(void) |
890 | { | 890 | { |
891 | int i; | 891 | int i; |
892 | 892 | ||