lkml.org 
[lkml]   [2016]   [Aug]   [22]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
/
Date
From
SubjectRe: [PATCH v05 05/72] hsi_char.h: use __u32 from linux/types.h
Hi,

On Mon, Aug 22, 2016 at 08:32:22PM +0200, Mikko Rapeli wrote:
> 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>
> ---
> include/uapi/linux/hsi/hsi_char.h | 17 +++++++++--------
> 1 file changed, 9 insertions(+), 8 deletions(-)
>
> diff --git a/include/uapi/linux/hsi/hsi_char.h b/include/uapi/linux/hsi/hsi_char.h
> index 76160b4..c00a463 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 */

Thanks, queued.

-- Sebastian
[unhandled content-type:application/pgp-signature]
\
 
 \ /
  Last update: 2016-09-17 09:57    [W:0.972 / U:0.120 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site