Skip to content

Commit 95306f0

Browse files
AMarkovicralfbaechle
authored andcommitted
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 <[email protected]> Cc: Douglas Leung <[email protected]> Cc: Goran Ferenc <[email protected]> Cc: James Hogan <[email protected]> Cc: Miodrag Dinic <[email protected]> Cc: Paul Burton <[email protected]> Cc: Petar Jovanovic <[email protected]> Cc: Raghu Gandham <[email protected]> Cc: [email protected] Cc: [email protected] Patchwork: https://patchwork.linux-mips.org/patch/17585/ Signed-off-by: Ralf Baechle <[email protected]>
1 parent 999eae9 commit 95306f0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

arch/mips/math-emu/dp_maddf.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616

1717

1818
/* 128 bits shift right logical with rounding. */
19-
void srl128(u64 *hptr, u64 *lptr, int count)
19+
static void srl128(u64 *hptr, u64 *lptr, int count)
2020
{
2121
u64 low;
2222

0 commit comments

Comments
 (0)