summaryrefslogtreecommitdiff
path: root/v4l/compat.h
diff options
context:
space:
mode:
Diffstat (limited to 'v4l/compat.h')
-rw-r--r--v4l/compat.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/v4l/compat.h b/v4l/compat.h
index 644906eb0..c480af095 100644
--- a/v4l/compat.h
+++ b/v4l/compat.h
@@ -534,13 +534,13 @@ do { \
#define put_unaligned_le16(r, a) \
put_unaligned(cpu_to_le16(r), ((unsigned short *)(a)))
#define get_unaligned_be32(a) \
- be32_to_cpu(get_unaligned((unsigned short *)(a)))
+ be32_to_cpu(get_unaligned((u32 *)(a)))
#define put_unaligned_be32(r, a) \
- put_unaligned(cpu_to_be32(r), ((unsigned short *)(a)))
+ put_unaligned(cpu_to_be32(r), ((u32 *)(a)))
#define get_unaligned_le32(a) \
- le32_to_cpu(get_unaligned((unsigned short *)(a)))
+ le32_to_cpu(get_unaligned((u32 *)(a)))
#define put_unaligned_le32(r, a) \
- put_unaligned(cpu_to_le32(r), ((unsigned short *)(a)))
+ put_unaligned(cpu_to_le32(r), ((u32 *)(a)))
#endif
#if LINUX_VERSION_CODE < KERNEL_VERSION(2, 6, 25)
#ifdef CONFIG_PROC_FS