diff options
author | Stepan Moskovchenko <stepanm@codeaurora.org> | 2010-11-13 04:29:53 +0100 |
---|---|---|
committer | Daniel Walker <dwalker@codeaurora.org> | 2010-11-30 23:03:36 +0100 |
commit | 516cbc793eb4be5123289d067b54dfcdabeddb25 (patch) | |
tree | e2c970c0b16c9a80a2b542446cdc9e5a850eb672 /arch/arm/mach-msm/devices-msm8x60-iommu.c | |
parent | msm: iommu: Support for the 2nd GFX core's IOMMU (diff) | |
download | linux-516cbc793eb4be5123289d067b54dfcdabeddb25.tar.xz linux-516cbc793eb4be5123289d067b54dfcdabeddb25.zip |
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[] = { &gfx2d1_2d1_ctx, }; -static int msm8x60_iommu_init(void) +static int __init msm8x60_iommu_init(void) { int ret, i; @@ -886,7 +886,7 @@ failure: return ret; } -static void msm8x60_iommu_exit(void) +static void __exit msm8x60_iommu_exit(void) { int i; |