MIPS: math-emu: Use preferred flavor of unsigned integer declarations
Fix occurences of unsigned integer variable declarations that are not preferred by standards of checkpatch scripts. This removes a significant number of checkpatch warnings for files in math-emu directory (several files become completely warning-free), and thus makes easier to spot (now and in the future) other, perhaps more significant, checkpatch errors and warnings. Signed-off-by: Aleksandar Markovic <aleksandar.markovic@mips.com> Reviewed-by: James Hogan <jhogan@kernel.org> Cc: Ralf Baechle <ralf@linux-mips.org> Cc: Douglas Leung <douglas.leung@mips.com> Cc: Goran Ferenc <goran.ferenc@mips.com> Cc: "Maciej W. Rozycki" <macro@imgtec.com> Cc: Manuel Lauss <manuel.lauss@gmail.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 Patchwork: https://patchwork.linux-mips.org/patch/17582/ Signed-off-by: James Hogan <jhogan@kernel.org>
This commit is contained in:

committed by
James Hogan

parent
409fcace99
commit
a58f85b5d5
@@ -69,7 +69,7 @@ static inline int ieee754sp_finite(union ieee754sp x)
|
||||
#define SPDNORMY SPDNORMx(ym, ye)
|
||||
#define SPDNORMZ SPDNORMx(zm, ze)
|
||||
|
||||
static inline union ieee754sp buildsp(int s, int bx, unsigned m)
|
||||
static inline union ieee754sp buildsp(int s, int bx, unsigned int m)
|
||||
{
|
||||
union ieee754sp r;
|
||||
|
||||
|
Reference in New Issue
Block a user