FROMLIST: 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>
(cherry picked from: https://patchwork.linux-mips.org/patch/17585/)
Signed-off-by: Greg Kroah-Hartman <gregkh@google.com>
This commit is contained in:
Aleksandar Markovic
2017-11-02 12:14:02 +01:00
committed by Amit Pundir
parent 6c468ce022
commit 61a1b96aa0

View File

@@ -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;