summaryrefslogtreecommitdiffstats
path: root/arch/mips/include/uapi/asm/bitfield.h
diff options
context:
space:
mode:
authorRalf Baechle <ralf@linux-mips.org>2014-04-16 00:39:02 +0200
committerRalf Baechle <ralf@linux-mips.org>2014-05-21 11:12:45 +0200
commit64a17a0ff19a938e1246474666635219f2c3bc15 (patch)
tree8c0b8ade8b00a6dd855c323527e70538bf1ec416 /arch/mips/include/uapi/asm/bitfield.h
parent60b5f90d0fac7585f1a43ccdad06787b97eda0ab (diff)
downloadop-kernel-dev-64a17a0ff19a938e1246474666635219f2c3bc15.zip
op-kernel-dev-64a17a0ff19a938e1246474666635219f2c3bc15.tar.gz
MIPS: Move definition of __BITFIELD_FIELD to sharable header.
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
Diffstat (limited to 'arch/mips/include/uapi/asm/bitfield.h')
-rw-r--r--arch/mips/include/uapi/asm/bitfield.h29
1 files changed, 29 insertions, 0 deletions
diff --git a/arch/mips/include/uapi/asm/bitfield.h b/arch/mips/include/uapi/asm/bitfield.h
new file mode 100644
index 0000000..ad98613
--- /dev/null
+++ b/arch/mips/include/uapi/asm/bitfield.h
@@ -0,0 +1,29 @@
+/*
+ * This file is subject to the terms and conditions of the GNU General Public
+ * License. See the file "COPYING" in the main directory of this archive
+ * for more details.
+ *
+ * Copyright (C) 2014 by Ralf Baechle <ralf@linux-mips.org>
+ */
+#ifndef __UAPI_ASM_BITFIELD_H
+#define __UAPI_ASM_BITFIELD_H
+
+/*
+ * * Damn ... bitfields depend from byteorder :-(
+ * */
+#ifdef __MIPSEB__
+#define __BITFIELD_FIELD(field, more) \
+ field; \
+ more
+
+#elif defined(__MIPSEL__)
+
+#define __BITFIELD_FIELD(field, more) \
+ more \
+ field;
+
+#else /* !defined (__MIPSEB__) && !defined (__MIPSEL__) */
+#error "MIPS but neither __MIPSEL__ nor __MIPSEB__?"
+#endif
+
+#endif /* __UAPI_ASM_BITFIELD_H */
OpenPOWER on IntegriCloud