From: Gabor Juhos Date: Mon, 5 Oct 2009 18:44:24 +0000 (+0000) Subject: ramips: make {read,write}_config static X-Git-Tag: reboot~22264 X-Git-Url: http://git.openwrt.org/?a=commitdiff_plain;h=7f3d685eeca40edd02cf6b1b252285148650d3e5;p=openwrt%2Fopenwrt.git ramips: make {read,write}_config static SVN-Revision: 17920 --- 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;