summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMyungJoo Ham <myungjoo.ham@samsung.com>2014-04-28 12:45:54 +0900
committerMyungJoo Ham <myungjoo.ham@samsung.com>2014-04-27 22:16:11 -0700
commit4c81741e50fc036d6e1257ba6b7ee9da275ae020 (patch)
treebfac5d8c0d785180ab5e294ec3ed1f527f9cbb0e
parent839896b1e982b916257914bd886ddd52484a49d8 (diff)
downloadlinux-3.10-4c81741e50fc036d6e1257ba6b7ee9da275ae020.tar.gz
linux-3.10-4c81741e50fc036d6e1257ba6b7ee9da275ae020.tar.bz2
linux-3.10-4c81741e50fc036d6e1257ba6b7ee9da275ae020.zip
A function, modem_probe, had __init while it was used by a struct that is not __init. Change-Id: Ib1571c89b4bfcebc58b2669b669bd4606d1922fa Signed-off-by: MyungJoo Ham <myungjoo.ham@samsung.com>
-rw-r--r--drivers/misc/modem_if/tizen_modem.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/misc/modem_if/tizen_modem.c b/drivers/misc/modem_if/tizen_modem.c
index 1d717c2486d..07ef592e7b6 100644
--- a/drivers/misc/modem_if/tizen_modem.c
+++ b/drivers/misc/modem_if/tizen_modem.c
@@ -419,7 +419,7 @@ dt_parse_err:
return ERR_PTR(err);
}
-static int __init modem_probe(struct platform_device *pdev)
+static int modem_probe(struct platform_device *pdev)
{
int i;
struct modem_data *pdata = pdev->dev.platform_data;