MIPS: <uapi/asm/msgbuf.h>: Don't reference CONFIG_* symbols.
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
This commit is contained in:
@ -14,25 +14,25 @@
|
|||||||
|
|
||||||
struct msqid64_ds {
|
struct msqid64_ds {
|
||||||
struct ipc64_perm msg_perm;
|
struct ipc64_perm msg_perm;
|
||||||
#if defined(CONFIG_32BIT) && !defined(CONFIG_CPU_LITTLE_ENDIAN)
|
#if !defined(__mips64) && defined(__MIPSEB__)
|
||||||
unsigned long __unused1;
|
unsigned long __unused1;
|
||||||
#endif
|
#endif
|
||||||
__kernel_time_t msg_stime; /* last msgsnd time */
|
__kernel_time_t msg_stime; /* last msgsnd time */
|
||||||
#if defined(CONFIG_32BIT) && defined(CONFIG_CPU_LITTLE_ENDIAN)
|
#if !defined(__mips64) && defined(__MIPSEL__)
|
||||||
unsigned long __unused1;
|
unsigned long __unused1;
|
||||||
#endif
|
#endif
|
||||||
#if defined(CONFIG_32BIT) && !defined(CONFIG_CPU_LITTLE_ENDIAN)
|
#if !defined(__mips64) && defined(__MIPSEB__)
|
||||||
unsigned long __unused2;
|
unsigned long __unused2;
|
||||||
#endif
|
#endif
|
||||||
__kernel_time_t msg_rtime; /* last msgrcv time */
|
__kernel_time_t msg_rtime; /* last msgrcv time */
|
||||||
#if defined(CONFIG_32BIT) && defined(CONFIG_CPU_LITTLE_ENDIAN)
|
#if !defined(__mips64) && defined(__MIPSEL__)
|
||||||
unsigned long __unused2;
|
unsigned long __unused2;
|
||||||
#endif
|
#endif
|
||||||
#if defined(CONFIG_32BIT) && !defined(CONFIG_CPU_LITTLE_ENDIAN)
|
#if !defined(__mips64) && defined(__MIPSEB__)
|
||||||
unsigned long __unused3;
|
unsigned long __unused3;
|
||||||
#endif
|
#endif
|
||||||
__kernel_time_t msg_ctime; /* last change time */
|
__kernel_time_t msg_ctime; /* last change time */
|
||||||
#if defined(CONFIG_32BIT) && defined(CONFIG_CPU_LITTLE_ENDIAN)
|
#if !defined(__mips64) && defined(__MIPSEL__)
|
||||||
unsigned long __unused3;
|
unsigned long __unused3;
|
||||||
#endif
|
#endif
|
||||||
unsigned long msg_cbytes; /* current number of bytes on queue */
|
unsigned long msg_cbytes; /* current number of bytes on queue */
|
||||||
|
Reference in New Issue
Block a user