dect
/
linux-2.6
Archived
13
0
Fork 0

[MIPS] Malta, Atlas: move an extern function declaration to the header file

This was compile-tested using default configs for the boards
affected by this change.

This patch does not introduce any functional changes.

Signed-off-by: Dmitri Vorobiev <dmitri.vorobiev@gmail.com>
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
This commit is contained in:
Dmitri Vorobiev 2008-01-24 19:52:53 +03:00 committed by Ralf Baechle
parent ae9cef0b79
commit bbdda5e1fe
3 changed files with 4 additions and 8 deletions

View File

@ -34,10 +34,6 @@
#include <asm/time.h>
#include <asm/traps.h>
#ifdef CONFIG_KGDB
extern void kgdb_config(void);
#endif
static void __init serial_init(void);
const char *get_system_type(void)

View File

@ -35,10 +35,6 @@
#include <linux/console.h>
#endif
#ifdef CONFIG_KGDB
extern void kgdb_config(void);
#endif
struct resource standard_io_resources[] = {
{
.name = "dma1",

View File

@ -105,4 +105,8 @@ extern void mips_pcibios_init(void);
#define mips_pcibios_init() do { } while (0)
#endif
#ifdef CONFIG_KGDB
extern void kgdb_config(void);
#endif
#endif /* __ASM_MIPS_BOARDS_GENERIC_H */