diff options
author | Aleksandar Markovic <aleksandar.markovic@mips.com> | 2017-11-02 12:14:02 +0100 |
---|---|---|
committer | Ralf Baechle <ralf@linux-mips.org> | 2017-12-12 17:20:19 +0100 |
commit | 95306f0469580ba94e909d63ee1e2a67c5dc5cba (patch) | |
tree | 9d71a36dc0b1b9859bf298a278d02f74865513b7 /arch/mips/math-emu | |
parent | 999eae9bf61d379b22f460b31f76b4a03f40bb22 (diff) | |
download | talos-op-linux-95306f0469580ba94e909d63ee1e2a67c5dc5cba.tar.gz talos-op-linux-95306f0469580ba94e909d63ee1e2a67c5dc5cba.zip |
MIPS: math-emu: Declare function srl128() as static
Declare function srl128() as static, since it it used just locally
to the source file.
This also removes a sparse warning for corresponding file.
Signed-off-by: Aleksandar Markovic <aleksandar.markovic@mips.com>
Cc: Douglas Leung <douglas.leung@mips.com>
Cc: Goran Ferenc <goran.ferenc@mips.com>
Cc: James Hogan <james.hogan@mips.com>
Cc: Miodrag Dinic <miodrag.dinic@mips.com>
Cc: Paul Burton <paul.burton@mips.com>
Cc: Petar Jovanovic <petar.jovanovic@mips.com>
Cc: Raghu Gandham <raghu.gandham@mips.com>
Cc: linux-mips@linux-mips.org
Cc: linux-kernel@vger.kernel.org
Patchwork: https://patchwork.linux-mips.org/patch/17585/
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
Diffstat (limited to 'arch/mips/math-emu')
-rw-r--r-- | arch/mips/math-emu/dp_maddf.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/mips/math-emu/dp_maddf.c b/arch/mips/math-emu/dp_maddf.c index 28b90fd3e093..5c4ad8e32fcb 100644 --- a/arch/mips/math-emu/dp_maddf.c +++ b/arch/mips/math-emu/dp_maddf.c @@ -16,7 +16,7 @@ /* 128 bits shift right logical with rounding. */ -void srl128(u64 *hptr, u64 *lptr, int count) +static void srl128(u64 *hptr, u64 *lptr, int count) { u64 low; |