PCI: Remove "extern" from function declarations
We had an inconsistent mix of using and omitting the "extern" keyword on function declarations in header files. This removes them all. Signed-off-by: Bjorn Helgaas <bhelgaas@google.com>
This commit is contained in:
@@ -30,26 +30,26 @@
|
||||
|
||||
#ifndef CONFIG_HOTPLUG_PCI_COMPAQ_NVRAM
|
||||
|
||||
static inline void compaq_nvram_init (void __iomem *rom_start)
|
||||
static inline void compaq_nvram_init(void __iomem *rom_start)
|
||||
{
|
||||
return;
|
||||
}
|
||||
|
||||
static inline int compaq_nvram_load (void __iomem *rom_start, struct controller *ctrl)
|
||||
static inline int compaq_nvram_load(void __iomem *rom_start, struct controller *ctrl)
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
|
||||
static inline int compaq_nvram_store (void __iomem *rom_start)
|
||||
static inline int compaq_nvram_store(void __iomem *rom_start)
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
|
||||
#else
|
||||
|
||||
extern void compaq_nvram_init (void __iomem *rom_start);
|
||||
extern int compaq_nvram_load (void __iomem *rom_start, struct controller *ctrl);
|
||||
extern int compaq_nvram_store (void __iomem *rom_start);
|
||||
void compaq_nvram_init(void __iomem *rom_start);
|
||||
int compaq_nvram_load(void __iomem *rom_start, struct controller *ctrl);
|
||||
int compaq_nvram_store(void __iomem *rom_start);
|
||||
|
||||
#endif
|
||||
|
||||
|
Reference in New Issue
Block a user