ARM: spear: Staticize local symbols in spear1340.c

Symbols local to this file are made static.

Signed-off-by: Sachin Kamat <sachin.kamat@linaro.org>
Signed-off-by: Sachin Kamat <sachin.kamat@samsung.com>
Acked-by: Viresh Kumar <viresh.kumar@linaro.org>
Signed-off-by: Olof Johansson <olof@lixom.net>
This commit is contained in:
Sachin Kamat 2014-06-24 17:13:55 +05:30 committed by Olof Johansson
parent 17681ff255
commit e12f739e11
1 changed files with 3 additions and 3 deletions

View File

@ -93,7 +93,7 @@ static int sata_miphy_init(struct device *dev, void __iomem *addr)
return 0;
}
void sata_miphy_exit(struct device *dev)
static void sata_miphy_exit(struct device *dev)
{
writel(0, SPEAR1340_PCIE_SATA_CFG);
writel(0, SPEAR1340_PCIE_MIPHY_CFG);
@ -107,7 +107,7 @@ void sata_miphy_exit(struct device *dev)
msleep(20);
}
int sata_suspend(struct device *dev)
static int sata_suspend(struct device *dev)
{
if (dev->power.power_state.event == PM_EVENT_FREEZE)
return 0;
@ -117,7 +117,7 @@ int sata_suspend(struct device *dev)
return 0;
}
int sata_resume(struct device *dev)
static int sata_resume(struct device *dev)
{
if (dev->power.power_state.event == PM_EVENT_THAW)
return 0;