summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJim Wylder <jwylder@motorola.com>2014-06-25 14:57:17 -0500
committerJim Wylder <jwylder@motorola.com>2014-06-27 16:01:33 -0500
commit0adce387cf71ea9707fa26100a4826266e1346f5 (patch)
treebd9bcf95f8babb8a4136792856a4cb60cb85a044
parent078de4c44e4ca16850d2b9166b13a945caa7eb33 (diff)
downloadolio-linux-3.10-0adce387cf71ea9707fa26100a4826266e1346f5.tar.xz
olio-linux-3.10-0adce387cf71ea9707fa26100a4826266e1346f5.zip
IKXCLOCK-2592 mfd: cleanup section mismatch
probe function is referenced by the device structure (which is not in the init section). Change-Id: I683bb598c75e69e09a3de797fb17242a2781e90f Signed-off-by: Jim Wylder <jwylder@motorola.com>
-rw-r--r--drivers/mfd/tps65912-key.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/mfd/tps65912-key.c b/drivers/mfd/tps65912-key.c
index a4732c69dc8..37dac69cf7e 100644
--- a/drivers/mfd/tps65912-key.c
+++ b/drivers/mfd/tps65912-key.c
@@ -29,7 +29,7 @@ struct tps65912_key_data {
struct tps65912 *tps65912;
};
-static int __init tps65912_key_probe(struct platform_device *pdev)
+static int tps65912_key_probe(struct platform_device *pdev)
{
int err;
struct tps65912_key_data *key;