Commit 3b31bb6b authored by Yanteng Si's avatar Yanteng Si Committed by Thomas Bogendoerfer
Browse files

MIPS: init: move externs to header file



This commit fixes the following checkpatch warnings:

    WARNING: externs should be avoided in .c files

    This is a warning for placing declarations in a ".c" file.
    This fix removes the declaration in ".c" and adds it to
    the common header file.

Signed-off-by: default avatarYanteng Si <siyanteng@loongson.cn>
Reviewed-by: default avatarHuacai Chen <chenhuacai@kernel.org>
Signed-off-by: default avatarThomas Bogendoerfer <tsbogend@alpha.franken.de>
parent fdd85e04
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -24,6 +24,7 @@ extern void (*board_ebase_setup)(void);
extern void (*board_cache_error_setup)(void);

extern int register_nmi_notifier(struct notifier_block *nb);
extern char except_vec_nmi[];

#define nmi_notifier(fn, pri)						\
({									\
+0 −1
Original line number Diff line number Diff line
@@ -19,7 +19,6 @@ unsigned long __maybe_unused _loongson_addrwincfg_base;
static void __init mips_nmi_setup(void)
{
	void *base;
	extern char except_vec_nmi[];

	base = (void *)(CAC_BASE + 0x380);
	memcpy(base, except_vec_nmi, 0x80);
+0 −1
Original line number Diff line number Diff line
@@ -25,7 +25,6 @@ u32 node_id_offset;
static void __init mips_nmi_setup(void)
{
	void *base;
	extern char except_vec_nmi[];

	base = (void *)(CAC_BASE + 0x380);
	memcpy(base, except_vec_nmi, 0x80);
+0 −1
Original line number Diff line number Diff line
@@ -90,7 +90,6 @@ static void __init console_config(void)
static void __init mips_nmi_setup(void)
{
	void *base;
	extern char except_vec_nmi[];

	base = cpu_has_veic ?
		(void *)(CAC_BASE + 0xa80) :
+0 −1
Original line number Diff line number Diff line
@@ -83,7 +83,6 @@ phys_addr_t mips_cdmm_phys_base(void)
static void __init mips_nmi_setup(void)
{
	void *base;
	extern char except_vec_nmi[];

	base = cpu_has_veic ?
		(void *)(CAC_BASE + 0xa80) :