summaryrefslogtreecommitdiffstats
path: root/include/uapi/linux/hsi
diff options
context:
space:
mode:
authorMikko Rapeli2016-08-22 20:32:22 +0200
committerSebastian Reichel2016-08-22 22:43:35 +0200
commit7ac5d7b1a1254ceb4be19ba93ef7a6ee4e7ac382 (patch)
tree1b9ac5b5b9db8a5f182fc0530a47915fa95b9afd /include/uapi/linux/hsi
parentLinux 4.8-rc1 (diff)
downloadkernel-qcow2-linux-7ac5d7b1a1254ceb4be19ba93ef7a6ee4e7ac382.tar.gz
kernel-qcow2-linux-7ac5d7b1a1254ceb4be19ba93ef7a6ee4e7ac382.tar.xz
kernel-qcow2-linux-7ac5d7b1a1254ceb4be19ba93ef7a6ee4e7ac382.zip
HSI: hsi_char.h: use __u32 from linux/types.h
Fixes userspace compiler errors like: linux/hsi/hsi_char.h:51:2: error: unknown type name ‘uint32_t’ Signed-off-by: Mikko Rapeli <mikko.rapeli@iki.fi> Signed-off-by: Sebastian Reichel <sre@kernel.org>
Diffstat (limited to 'include/uapi/linux/hsi')
-rw-r--r--include/uapi/linux/hsi/hsi_char.h17
1 files changed, 9 insertions, 8 deletions
diff --git a/include/uapi/linux/hsi/hsi_char.h b/include/uapi/linux/hsi/hsi_char.h
index 76160b4f455d..c00a463d55f9 100644
--- a/include/uapi/linux/hsi/hsi_char.h
+++ b/include/uapi/linux/hsi/hsi_char.h
@@ -20,10 +20,11 @@
* 02110-1301 USA
*/
-
#ifndef __HSI_CHAR_H
#define __HSI_CHAR_H
+#include <linux/types.h>
+
#define HSI_CHAR_MAGIC 'k'
#define HSC_IOW(num, dtype) _IOW(HSI_CHAR_MAGIC, num, dtype)
#define HSC_IOR(num, dtype) _IOR(HSI_CHAR_MAGIC, num, dtype)
@@ -48,16 +49,16 @@
#define HSC_ARB_PRIO 1
struct hsc_rx_config {
- uint32_t mode;
- uint32_t flow;
- uint32_t channels;
+ __u32 mode;
+ __u32 flow;
+ __u32 channels;
};
struct hsc_tx_config {
- uint32_t mode;
- uint32_t channels;
- uint32_t speed;
- uint32_t arb_mode;
+ __u32 mode;
+ __u32 channels;
+ __u32 speed;
+ __u32 arb_mode;
};
#endif /* __HSI_CHAR_H */