From: Mikko Rapeli Date: Mon, 22 Aug 2016 18:32:55 +0000 (+0200) Subject: include/uapi/linux/openvswitch.h: use __u32 from linux/types.h X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=e6571aa5cb65ff52a87843652d0d8120a48aae7c;p=linux-beck.git include/uapi/linux/openvswitch.h: use __u32 from linux/types.h Fixes userspace compiler error: error: unknown type name ‘uint32_t’ Signed-off-by: Mikko Rapeli Signed-off-by: David S. Miller --- diff --git a/include/uapi/linux/openvswitch.h b/include/uapi/linux/openvswitch.h index d95a3018f6a1..645499a634f7 100644 --- a/include/uapi/linux/openvswitch.h +++ b/include/uapi/linux/openvswitch.h @@ -632,8 +632,8 @@ enum ovs_hash_alg { * @hash_basis: basis used for computing hash. */ struct ovs_action_hash { - uint32_t hash_alg; /* One of ovs_hash_alg. */ - uint32_t hash_basis; + __u32 hash_alg; /* One of ovs_hash_alg. */ + __u32 hash_basis; }; /**