Commit 4943aa4e authored by Joe Perches's avatar Joe Perches Committed by Ingo Molnar

include/asm-x86/posix_types_64.h: checkpatch cleanups - formatting only

Signed-off-by: default avatarJoe Perches <joe@perches.com>
Signed-off-by: default avatarIngo Molnar <mingo@elte.hu>
parent 2c5d516c
...@@ -46,7 +46,7 @@ typedef unsigned long __kernel_old_dev_t; ...@@ -46,7 +46,7 @@ typedef unsigned long __kernel_old_dev_t;
#ifdef __KERNEL__ #ifdef __KERNEL__
#undef __FD_SET #undef __FD_SET
static __inline__ void __FD_SET(unsigned long fd, __kernel_fd_set *fdsetp) static inline void __FD_SET(unsigned long fd, __kernel_fd_set *fdsetp)
{ {
unsigned long _tmp = fd / __NFDBITS; unsigned long _tmp = fd / __NFDBITS;
unsigned long _rem = fd % __NFDBITS; unsigned long _rem = fd % __NFDBITS;
...@@ -54,7 +54,7 @@ static __inline__ void __FD_SET(unsigned long fd, __kernel_fd_set *fdsetp) ...@@ -54,7 +54,7 @@ static __inline__ void __FD_SET(unsigned long fd, __kernel_fd_set *fdsetp)
} }
#undef __FD_CLR #undef __FD_CLR
static __inline__ void __FD_CLR(unsigned long fd, __kernel_fd_set *fdsetp) static inline void __FD_CLR(unsigned long fd, __kernel_fd_set *fdsetp)
{ {
unsigned long _tmp = fd / __NFDBITS; unsigned long _tmp = fd / __NFDBITS;
unsigned long _rem = fd % __NFDBITS; unsigned long _rem = fd % __NFDBITS;
...@@ -62,7 +62,7 @@ static __inline__ void __FD_CLR(unsigned long fd, __kernel_fd_set *fdsetp) ...@@ -62,7 +62,7 @@ static __inline__ void __FD_CLR(unsigned long fd, __kernel_fd_set *fdsetp)
} }
#undef __FD_ISSET #undef __FD_ISSET
static __inline__ int __FD_ISSET(unsigned long fd, __const__ __kernel_fd_set *p) static inline int __FD_ISSET(unsigned long fd, __const__ __kernel_fd_set *p)
{ {
unsigned long _tmp = fd / __NFDBITS; unsigned long _tmp = fd / __NFDBITS;
unsigned long _rem = fd % __NFDBITS; unsigned long _rem = fd % __NFDBITS;
...@@ -74,7 +74,7 @@ static __inline__ int __FD_ISSET(unsigned long fd, __const__ __kernel_fd_set *p) ...@@ -74,7 +74,7 @@ static __inline__ int __FD_ISSET(unsigned long fd, __const__ __kernel_fd_set *p)
* for 256 and 1024-bit fd_sets respectively) * for 256 and 1024-bit fd_sets respectively)
*/ */
#undef __FD_ZERO #undef __FD_ZERO
static __inline__ void __FD_ZERO(__kernel_fd_set *p) static inline void __FD_ZERO(__kernel_fd_set *p)
{ {
unsigned long *tmp = p->fds_bits; unsigned long *tmp = p->fds_bits;
int i; int i;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment