diff options
author | Adrian Bunk <bunk@stusta.de> | 2007-10-16 21:24:59 (GMT) |
---|---|---|
committer | Kyle McMartin <kyle@shortfin.cabal.ca> | 2007-10-18 07:58:41 (GMT) |
commit | f13cec8447f18cca3a0feb4b83b7ba6fae9e59ae (patch) | |
tree | ab42ee63ed1a108262c9a7267fa7e36d8a9e923d /include/asm-parisc/pci.h | |
parent | 0ed5462927211286502576142bd322d850b49a86 (diff) | |
download | linux-f13cec8447f18cca3a0feb4b83b7ba6fae9e59ae.tar.xz |
[PARISC] parisc: "extern inline" -> "static inline"
"extern inline" will have different semantics with gcc 4.3, and "static
inline" is correct here.
Signed-off-by: Adrian Bunk <bunk@stusta.de>
Cc: Matthew Wilcox <willy@debian.org>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Kyle McMartin <kyle@mcmartin.ca>
Diffstat (limited to 'include/asm-parisc/pci.h')
-rw-r--r-- | include/asm-parisc/pci.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/asm-parisc/pci.h b/include/asm-parisc/pci.h index 61fbd57..4ba868f 100644 --- a/include/asm-parisc/pci.h +++ b/include/asm-parisc/pci.h @@ -207,7 +207,7 @@ extern struct pci_bios_ops *pci_bios; extern void pcibios_register_hba(struct pci_hba_data *); extern void pcibios_set_master(struct pci_dev *); #else -extern inline void pcibios_register_hba(struct pci_hba_data *x) +static inline void pcibios_register_hba(struct pci_hba_data *x) { } #endif |