diff options
author | Thomas Bogendoerfer <tbogendoerfer@suse.de> | 2019-10-22 18:13:11 +0200 |
---|---|---|
committer | Paul Burton <paulburton@kernel.org> | 2019-10-23 21:10:29 -0700 |
commit | 249be5633cdb31d8daf01326b3bf02733d7d7e9a (patch) | |
tree | b3488c33b39ea381dac16c8d96129787b35d6919 /arch/mips/sgi-ip27/ip27-common.h | |
parent | e02d026f08f1fedb8c94d6f659ccc7c6ce1043f3 (diff) | |
download | linux-249be5633cdb31d8daf01326b3bf02733d7d7e9a.tar.bz2 |
MIPS: SGI-IP27: collect externs in new header file
IP27 code has a few externs distributed over .c files. Collect them
together into one commcon header file.
Signed-off-by: Thomas Bogendoerfer <tbogendoerfer@suse.de>
Signed-off-by: Paul Burton <paulburton@kernel.org>
Cc: Ralf Baechle <ralf@linux-mips.org>
Cc: Paul Burton <paul.burton@mips.com>
Cc: James Hogan <jhogan@kernel.org>
Cc: linux-mips@vger.kernel.org
Cc: linux-kernel@vger.kernel.org
Diffstat (limited to 'arch/mips/sgi-ip27/ip27-common.h')
-rw-r--r-- | arch/mips/sgi-ip27/ip27-common.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/arch/mips/sgi-ip27/ip27-common.h b/arch/mips/sgi-ip27/ip27-common.h new file mode 100644 index 000000000000..e9e9f1dc8c20 --- /dev/null +++ b/arch/mips/sgi-ip27/ip27-common.h @@ -0,0 +1,9 @@ +/* SPDX-License-Identifier: GPL-2.0-only */ + +#ifndef __IP27_COMMON_H +#define __IP27_COMMON_H + +extern void ip27_reboot_setup(void); +extern void hub_rt_clock_event_init(void); + +#endif /* __IP27_COMMON_H */ |