diff options
author | Andrea Gelmini <andrea.gelmini@gelma.net> | 2010-05-23 21:52:08 +0200 |
---|---|---|
committer | Ralf Baechle <ralf@linux-mips.org> | 2010-08-05 13:25:43 +0100 |
commit | 24da36cdc5c7bc8ccde1876f81f884d6d42c0602 (patch) | |
tree | a06b56dbffe680d3a5e3db8679499a8451b5a2ef | |
parent | c273625b42dc93094b9f5db64944a0a8c6775c99 (diff) | |
download | linux-3.10-24da36cdc5c7bc8ccde1876f81f884d6d42c0602.tar.gz linux-3.10-24da36cdc5c7bc8ccde1876f81f884d6d42c0602.tar.bz2 linux-3.10-24da36cdc5c7bc8ccde1876f81f884d6d42c0602.zip |
MIPS: math-emu: Checkpatch cleanup
arch/mips/math-emu/sp_modf.c:32: ERROR: "foo * bar" should be "foo *bar"
Signed-off-by: Andrea Gelmini <andrea.gelmini@gelma.net>
Cc: linux-mips@linux-mips.org
Patchwork: https://patchwork.linux-mips.org/patch/1273/
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
-rw-r--r-- | arch/mips/math-emu/sp_modf.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/mips/math-emu/sp_modf.c b/arch/mips/math-emu/sp_modf.c index 4b1dbac796f..76568946b4c 100644 --- a/arch/mips/math-emu/sp_modf.c +++ b/arch/mips/math-emu/sp_modf.c @@ -29,7 +29,7 @@ /* modf function is always exact for a finite number */ -ieee754sp ieee754sp_modf(ieee754sp x, ieee754sp * ip) +ieee754sp ieee754sp_modf(ieee754sp x, ieee754sp *ip) { COMPXSP; |