From 7f3d685eeca40edd02cf6b1b252285148650d3e5 Mon Sep 17 00:00:00 2001 From: Gabor Juhos Date: Mon, 5 Oct 2009 18:44:24 +0000 Subject: [PATCH] ramips: make {read,write}_config static SVN-Revision: 17920 --- target/linux/ramips/files/arch/mips/pci/pci-rt288x.c | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/target/linux/ramips/files/arch/mips/pci/pci-rt288x.c b/target/linux/ramips/files/arch/mips/pci/pci-rt288x.c index e297419012..76b70d09e1 100644 --- a/target/linux/ramips/files/arch/mips/pci/pci-rt288x.c +++ b/target/linux/ramips/files/arch/mips/pci/pci-rt288x.c @@ -117,9 +117,9 @@ static struct pci_controller rt2880_pci_controller = { .io_resource = &rt2880_pci_mem_resource, }; -void inline read_config(unsigned long bus, unsigned long dev, - unsigned long func, unsigned long reg, - unsigned long *val) +static inline void read_config(unsigned long bus, unsigned long dev, + unsigned long func, unsigned long reg, + unsigned long *val) { unsigned long address; @@ -129,9 +129,9 @@ void inline read_config(unsigned long bus, unsigned long dev, *val = rt2880_pci_reg_read(RT2880_PCI_REG_CONFIG_DATA); } -void inline write_config(unsigned long bus, unsigned long dev, - unsigned long func, unsigned long reg, - unsigned long val) +static inline void write_config(unsigned long bus, unsigned long dev, + unsigned long func, unsigned long reg, + unsigned long val) { unsigned long address;