diff options
author | Gregory Bean <gbean@codeaurora.org> | 2010-07-28 10:22:12 -0700 |
---|---|---|
committer | Daniel Walker <dwalker@codeaurora.org> | 2010-08-09 15:38:16 -0700 |
commit | 4416e9eb0b4859b3d28016c5fd0a609bdcbc8a2a (patch) | |
tree | 44314bd6634adfe7a23734970d7826b8682f4b0b /arch/arm/mach-msm/smd.c | |
parent | 42a2c2149f55915961fcda79176efd54268fbee2 (diff) |
arm: msm: Fix section mismatch in smd.c.
Repair a section mismatch between the smd driver's
platform_driver structure and its probe method.
Signed-off-by: Gregory Bean <gbean@codeaurora.org>
Signed-off-by: Daniel Walker <dwalker@codeaurora.org>
Diffstat (limited to 'arch/arm/mach-msm/smd.c')
-rw-r--r-- | arch/arm/mach-msm/smd.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/mach-msm/smd.c b/arch/arm/mach-msm/smd.c index cf11d414b425..f07dc7c738f0 100644 --- a/arch/arm/mach-msm/smd.c +++ b/arch/arm/mach-msm/smd.c @@ -997,7 +997,7 @@ int smd_core_init(void) return 0; } -static int __init msm_smd_probe(struct platform_device *pdev) +static int __devinit msm_smd_probe(struct platform_device *pdev) { pr_info("smd_init()\n"); |