From: Xianglong Du Date: Fri, 14 Feb 2014 16:45:13 +0000 (-0800) Subject: Input: sirfsoc-onkey - fix namespace pwrc_resume function X-Git-Tag: firefly_0821_release~176^2~541^2~209^2~28 X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=3a80035bcbbaff1870a537b4ea57727290bded56;p=firefly-linux-kernel-4.4.55.git Input: sirfsoc-onkey - fix namespace pwrc_resume function This function lost namespace, this patch fixes it. Signed-off-by: Xianglong Du Signed-off-by: Barry Song Signed-off-by: Dmitry Torokhov --- diff --git a/drivers/input/misc/sirfsoc-onkey.c b/drivers/input/misc/sirfsoc-onkey.c index 3b54cba650de..d5b4a7674b9a 100644 --- a/drivers/input/misc/sirfsoc-onkey.c +++ b/drivers/input/misc/sirfsoc-onkey.c @@ -157,7 +157,7 @@ static int sirfsoc_pwrc_remove(struct platform_device *pdev) } #ifdef CONFIG_PM_SLEEP -static int pwrc_resume(struct device *dev) +static int sirfsoc_pwrc_resume(struct device *dev) { struct platform_device *pdev = to_platform_device(dev); struct sirfsoc_pwrc_drvdata *pwrcdrv = platform_get_drvdata(pdev); @@ -176,7 +176,7 @@ static int pwrc_resume(struct device *dev) } #endif -static SIMPLE_DEV_PM_OPS(sirfsoc_pwrc_pm_ops, NULL, pwrc_resume); +static SIMPLE_DEV_PM_OPS(sirfsoc_pwrc_pm_ops, NULL, sirfsoc_pwrc_resume); static struct platform_driver sirfsoc_pwrc_driver = { .probe = sirfsoc_pwrc_probe,