diff options
author | Ralf Baechle <ralf@linux-mips.org> | 2007-02-06 16:53:17 +0000 |
---|---|---|
committer | Ralf Baechle <ralf@linux-mips.org> | 2007-02-06 16:53:17 +0000 |
commit | be6e143741226ca59b24e6760de4578a5d4f98d7 (patch) | |
tree | d29b8a0e3b63da6d7dd1d8c26b3d8d38da9ac46b | |
parent | 418451c17870e56a176aeb4be1bed810f634fb5a (diff) | |
download | linux-3.10-be6e143741226ca59b24e6760de4578a5d4f98d7.tar.gz linux-3.10-be6e143741226ca59b24e6760de4578a5d4f98d7.tar.bz2 linux-3.10-be6e143741226ca59b24e6760de4578a5d4f98d7.zip |
[MIPS] vpe_elfload and vpe_run are only used locally, make them static.
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
-rw-r--r-- | arch/mips/kernel/vpe.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/mips/kernel/vpe.c b/arch/mips/kernel/vpe.c index 458fccf87c5..f31b15a56a4 100644 --- a/arch/mips/kernel/vpe.c +++ b/arch/mips/kernel/vpe.c @@ -695,7 +695,7 @@ static void dump_tclist(void) } /* We are prepared so configure and start the VPE... */ -int vpe_run(struct vpe * v) +static int vpe_run(struct vpe * v) { struct vpe_notifications *n; unsigned long val, dmt_flag; @@ -832,7 +832,7 @@ static int find_vpe_symbols(struct vpe * v, Elf_Shdr * sechdrs, * contents of the program (p)buffer performing relocatations/etc, free's it * when finished. */ -int vpe_elfload(struct vpe * v) +static int vpe_elfload(struct vpe * v) { Elf_Ehdr *hdr; Elf_Shdr *sechdrs; |