Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
L
linux
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
linux
Commits
1eaf198d
Commit
1eaf198d
authored
Apr 20, 2014
by
Ralf Baechle
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
MIPS: math-emu: Cleanup stdarg usage including apparently bogus comment.
Signed-off-by:
Ralf Baechle
<
ralf@linux-mips.org
>
parent
08f1faa0
Changes
4
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
4 additions
and
8 deletions
+4
-8
arch/mips/math-emu/ieee754.c
arch/mips/math-emu/ieee754.c
+1
-0
arch/mips/math-emu/ieee754.h
arch/mips/math-emu/ieee754.h
+1
-8
arch/mips/math-emu/ieee754dp.c
arch/mips/math-emu/ieee754dp.c
+1
-0
arch/mips/math-emu/ieee754sp.c
arch/mips/math-emu/ieee754sp.c
+1
-0
No files found.
arch/mips/math-emu/ieee754.c
View file @
1eaf198d
...
@@ -28,6 +28,7 @@
...
@@ -28,6 +28,7 @@
* ########################################################################
* ########################################################################
*/
*/
#include <stdarg.h>
#include <linux/compiler.h>
#include <linux/compiler.h>
#include "ieee754int.h"
#include "ieee754int.h"
...
...
arch/mips/math-emu/ieee754.h
View file @
1eaf198d
...
@@ -24,6 +24,7 @@
...
@@ -24,6 +24,7 @@
#ifndef __ARCH_MIPS_MATH_EMU_IEEE754_H
#ifndef __ARCH_MIPS_MATH_EMU_IEEE754_H
#define __ARCH_MIPS_MATH_EMU_IEEE754_H
#define __ARCH_MIPS_MATH_EMU_IEEE754_H
#include <stdarg.h>
#include <linux/compiler.h>
#include <linux/compiler.h>
#include <asm/byteorder.h>
#include <asm/byteorder.h>
#include <linux/kernel.h>
#include <linux/kernel.h>
...
@@ -31,14 +32,6 @@
...
@@ -31,14 +32,6 @@
#include <linux/sched.h>
#include <linux/sched.h>
#include <asm/bitfield.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
{
struct
ieee754dp_const
{
__BITFIELD_FIELD
(
unsigned
sign
:
1
,
__BITFIELD_FIELD
(
unsigned
sign
:
1
,
__BITFIELD_FIELD
(
unsigned
bexp
:
11
,
__BITFIELD_FIELD
(
unsigned
bexp
:
11
,
...
...
arch/mips/math-emu/ieee754dp.c
View file @
1eaf198d
...
@@ -23,6 +23,7 @@
...
@@ -23,6 +23,7 @@
* ########################################################################
* ########################################################################
*/
*/
#include <stdarg.h>
#include <linux/compiler.h>
#include <linux/compiler.h>
#include "ieee754dp.h"
#include "ieee754dp.h"
...
...
arch/mips/math-emu/ieee754sp.c
View file @
1eaf198d
...
@@ -23,6 +23,7 @@
...
@@ -23,6 +23,7 @@
* ########################################################################
* ########################################################################
*/
*/
#include <stdarg.h>
#include <linux/compiler.h>
#include <linux/compiler.h>
#include "ieee754sp.h"
#include "ieee754sp.h"
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment