diff options
author | Gregory Bean <gbean@codeaurora.org> | 2010-07-28 13:22:12 -0400 |
---|---|---|
committer | Daniel Walker <dwalker@codeaurora.org> | 2010-08-09 18:38:16 -0400 |
commit | 4416e9eb0b4859b3d28016c5fd0a609bdcbc8a2a (patch) | |
tree | 44314bd6634adfe7a23734970d7826b8682f4b0b /arch/arm | |
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')
-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) | |||
997 | return 0; | 997 | return 0; |
998 | } | 998 | } |
999 | 999 | ||
1000 | static int __init msm_smd_probe(struct platform_device *pdev) | 1000 | static int __devinit msm_smd_probe(struct platform_device *pdev) |
1001 | { | 1001 | { |
1002 | pr_info("smd_init()\n"); | 1002 | pr_info("smd_init()\n"); |
1003 | 1003 | ||