Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit e6571aa5 authored by Mikko Rapeli's avatar Mikko Rapeli Committed by David S. Miller
Browse files

include/uapi/linux/openvswitch.h: use __u32 from linux/types.h



Fixes userspace compiler error:

error: unknown type name ‘uint32_t’

Signed-off-by: default avatarMikko Rapeli <mikko.rapeli@iki.fi>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent eafe9211
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -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;
};

/**