mmc: dw_mmc: fix sparse non static symbol warning
authorWei Yongjun <yongjun_wei@trendmicro.com.cn>
Tue, 14 Jan 2014 02:03:33 +0000 (10:03 +0800)
committerChris Ball <chris@printf.net>
Tue, 14 Jan 2014 02:06:14 +0000 (21:06 -0500)
Fixes the following sparse warning:

drivers/mmc/host/dw_mmc-k3.c:116:1: warning:
 symbol 'dw_mci_k3_pmops' was not declared. Should it be static?

Signed-off-by: Wei Yongjun <yongjun_wei@trendmicro.com.cn>
Signed-off-by: Chris Ball <chris@printf.net>
drivers/mmc/host/dw_mmc-k3.c

index 68e5e42..3542a03 100644 (file)
@@ -113,7 +113,7 @@ static int dw_mci_k3_resume(struct device *dev)
        return dw_mci_resume(host);
 }
 
-SIMPLE_DEV_PM_OPS(dw_mci_k3_pmops, dw_mci_k3_suspend, dw_mci_k3_resume);
+static SIMPLE_DEV_PM_OPS(dw_mci_k3_pmops, dw_mci_k3_suspend, dw_mci_k3_resume);
 
 static struct platform_driver dw_mci_k3_pltfm_driver = {
        .probe          = dw_mci_k3_probe,