Commit c9dadffb authored by Anton Vorontsov's avatar Anton Vorontsov Committed by Kumar Gala

powerpc/fsl_pci: Fix sparse warnings

This patch fixes following sparse warnings:

  CHECK   fsl_pci.c
fsl_pci.c:32:13: warning: symbol 'setup_pci_atmu' was not declared. Should it be static?
fsl_pci.c:89:13: warning: symbol 'setup_pci_cmd' was not declared. Should it be static?
fsl_pci.c:133:12: warning: symbol 'fsl_pcie_check_link' was not declared. Should it be static?
Signed-off-by: default avatarAnton Vorontsov <avorontsov@ru.mvista.com>
Signed-off-by: default avatarKumar Gala <galak@kernel.crashing.org>
parent 25adde18
...@@ -29,7 +29,8 @@ ...@@ -29,7 +29,8 @@
#if defined(CONFIG_PPC_85xx) || defined(CONFIG_PPC_86xx) #if defined(CONFIG_PPC_85xx) || defined(CONFIG_PPC_86xx)
/* atmu setup for fsl pci/pcie controller */ /* atmu setup for fsl pci/pcie controller */
void __init setup_pci_atmu(struct pci_controller *hose, struct resource *rsrc) static void __init setup_pci_atmu(struct pci_controller *hose,
struct resource *rsrc)
{ {
struct ccsr_pci __iomem *pci; struct ccsr_pci __iomem *pci;
int i; int i;
...@@ -86,7 +87,7 @@ void __init setup_pci_atmu(struct pci_controller *hose, struct resource *rsrc) ...@@ -86,7 +87,7 @@ void __init setup_pci_atmu(struct pci_controller *hose, struct resource *rsrc)
out_be32(&pci->piw[2].piwar, PIWAR_2G); out_be32(&pci->piw[2].piwar, PIWAR_2G);
} }
void __init setup_pci_cmd(struct pci_controller *hose) static void __init setup_pci_cmd(struct pci_controller *hose)
{ {
u16 cmd; u16 cmd;
int cap_x; int cap_x;
...@@ -130,7 +131,7 @@ static void __init quirk_fsl_pcie_header(struct pci_dev *dev) ...@@ -130,7 +131,7 @@ static void __init quirk_fsl_pcie_header(struct pci_dev *dev)
return ; return ;
} }
int __init fsl_pcie_check_link(struct pci_controller *hose) static int __init fsl_pcie_check_link(struct pci_controller *hose)
{ {
u32 val; u32 val;
early_read_config_dword(hose, 0, 0, PCIE_LTSSM, &val); early_read_config_dword(hose, 0, 0, PCIE_LTSSM, &val);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment