summaryrefslogtreecommitdiff
path: root/backport/backport-include/linux/unaligned/packed_struct.h
diff options
context:
space:
mode:
authorHauke Mehrtens <hauke@hauke-m.de>2013-11-24 20:06:01 +0100
committerHauke Mehrtens <hauke@hauke-m.de>2013-11-24 22:17:46 +0100
commit74571a07a608daf241433172ee398c0b71188af8 (patch)
tree4ce6dbbc3725beaf8526aed394b01723af078944 /backport/backport-include/linux/unaligned/packed_struct.h
parentf79d7b9a86bbce15db9344b69770b37b122f6872 (diff)
backports: remove own version of include/linux/unaligned/*.hbackports-20131122-2
These files are now copied from the kernel like normal files we take from the kernel. Signed-off-by: Hauke Mehrtens <hauke@hauke-m.de>
Diffstat (limited to 'backport/backport-include/linux/unaligned/packed_struct.h')
-rw-r--r--backport/backport-include/linux/unaligned/packed_struct.h46
1 files changed, 0 insertions, 46 deletions
diff --git a/backport/backport-include/linux/unaligned/packed_struct.h b/backport/backport-include/linux/unaligned/packed_struct.h
deleted file mode 100644
index 2498bb9f..00000000
--- a/backport/backport-include/linux/unaligned/packed_struct.h
+++ /dev/null
@@ -1,46 +0,0 @@
-#ifndef _LINUX_UNALIGNED_PACKED_STRUCT_H
-#define _LINUX_UNALIGNED_PACKED_STRUCT_H
-
-#include <linux/kernel.h>
-
-struct __una_u16 { u16 x __attribute__((packed)); };
-struct __una_u32 { u32 x __attribute__((packed)); };
-struct __una_u64 { u64 x __attribute__((packed)); };
-
-static inline u16 __get_unaligned_cpu16(const void *p)
-{
- const struct __una_u16 *ptr = (const struct __una_u16 *)p;
- return ptr->x;
-}
-
-static inline u32 __get_unaligned_cpu32(const void *p)
-{
- const struct __una_u32 *ptr = (const struct __una_u32 *)p;
- return ptr->x;
-}
-
-static inline u64 __get_unaligned_cpu64(const void *p)
-{
- const struct __una_u64 *ptr = (const struct __una_u64 *)p;
- return ptr->x;
-}
-
-static inline void __put_unaligned_cpu16(u16 val, void *p)
-{
- struct __una_u16 *ptr = (struct __una_u16 *)p;
- ptr->x = val;
-}
-
-static inline void __put_unaligned_cpu32(u32 val, void *p)
-{
- struct __una_u32 *ptr = (struct __una_u32 *)p;
- ptr->x = val;
-}
-
-static inline void __put_unaligned_cpu64(u64 val, void *p)
-{
- struct __una_u64 *ptr = (struct __una_u64 *)p;
- ptr->x = val;
-}
-
-#endif /* _LINUX_UNALIGNED_PACKED_STRUCT_H */