summaryrefslogtreecommitdiffstats
path: root/arch/mips/math-emu
diff options
context:
space:
mode:
authorRalf Baechle2014-04-20 01:20:08 +0200
committerRalf Baechle2014-05-23 15:11:12 +0200
commit1eaf198d3aee7b71a5deb9dca45481a706381f80 (patch)
tree7bffd970c23b1ccc7204258a45655cc6137bb8a6 /arch/mips/math-emu
parentMIPS: math-emu: Remove #if 1 and dead code from its #else branch. (diff)
downloadkernel-qcow2-linux-1eaf198d3aee7b71a5deb9dca45481a706381f80.tar.gz
kernel-qcow2-linux-1eaf198d3aee7b71a5deb9dca45481a706381f80.tar.xz
kernel-qcow2-linux-1eaf198d3aee7b71a5deb9dca45481a706381f80.zip
MIPS: math-emu: Cleanup stdarg usage including apparently bogus comment.
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
Diffstat (limited to 'arch/mips/math-emu')
-rw-r--r--arch/mips/math-emu/ieee754.c1
-rw-r--r--arch/mips/math-emu/ieee754.h9
-rw-r--r--arch/mips/math-emu/ieee754dp.c1
-rw-r--r--arch/mips/math-emu/ieee754sp.c1
4 files changed, 4 insertions, 8 deletions
diff --git a/arch/mips/math-emu/ieee754.c b/arch/mips/math-emu/ieee754.c
index 68c29964f996..43a9a085ce62 100644
--- a/arch/mips/math-emu/ieee754.c
+++ b/arch/mips/math-emu/ieee754.c
@@ -28,6 +28,7 @@
* ########################################################################
*/
+#include <stdarg.h>
#include <linux/compiler.h>
#include "ieee754int.h"
diff --git a/arch/mips/math-emu/ieee754.h b/arch/mips/math-emu/ieee754.h
index 952c1808b568..6d9a89051b27 100644
--- a/arch/mips/math-emu/ieee754.h
+++ b/arch/mips/math-emu/ieee754.h
@@ -24,6 +24,7 @@
#ifndef __ARCH_MIPS_MATH_EMU_IEEE754_H
#define __ARCH_MIPS_MATH_EMU_IEEE754_H
+#include <stdarg.h>
#include <linux/compiler.h>
#include <asm/byteorder.h>
#include <linux/kernel.h>
@@ -31,14 +32,6 @@
#include <linux/sched.h>
#include <asm/bitfield.h>
-/*
- * Not very pretty, but the Linux kernel's normal va_list definition
- * does not allow it to be used as a structure element, as it is here.
- */
-#ifndef _STDARG_H
-#include <stdarg.h>
-#endif
-
struct ieee754dp_const {
__BITFIELD_FIELD(unsigned sign:1,
__BITFIELD_FIELD(unsigned bexp:11,
diff --git a/arch/mips/math-emu/ieee754dp.c b/arch/mips/math-emu/ieee754dp.c
index 53dbb1cb52a9..a8eb0142ca17 100644
--- a/arch/mips/math-emu/ieee754dp.c
+++ b/arch/mips/math-emu/ieee754dp.c
@@ -23,6 +23,7 @@
* ########################################################################
*/
+#include <stdarg.h>
#include <linux/compiler.h>
#include "ieee754dp.h"
diff --git a/arch/mips/math-emu/ieee754sp.c b/arch/mips/math-emu/ieee754sp.c
index 955e474b5b59..ed62ffeeb61e 100644
--- a/arch/mips/math-emu/ieee754sp.c
+++ b/arch/mips/math-emu/ieee754sp.c
@@ -23,6 +23,7 @@
* ########################################################################
*/
+#include <stdarg.h>
#include <linux/compiler.h>
#include "ieee754sp.h"