Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 97aef63c authored by Ralf Baechle's avatar Ralf Baechle
Browse files

[MIPS] SMTC: Declare static what should be static.

parent 033890b0
Loading
Loading
Loading
Loading
+2 −2
Original line number Original line Diff line number Diff line
@@ -168,9 +168,9 @@ static int __init tintq(char *str)


__setup("tintq=", tintq);
__setup("tintq=", tintq);


int imstuckcount[2][8];
static int imstuckcount[2][8];
/* vpemask represents IM/IE bits of per-VPE Status registers, low-to-high */
/* vpemask represents IM/IE bits of per-VPE Status registers, low-to-high */
int vpemask[2][8] = {
static int vpemask[2][8] = {
	{0, 0, 1, 0, 0, 0, 0, 1},
	{0, 0, 1, 0, 0, 0, 0, 1},
	{0, 0, 0, 0, 0, 0, 0, 1}
	{0, 0, 0, 0, 0, 0, 0, 1}
};
};