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

Commit 1a4e96a0 authored by Jarno Rajahalme's avatar Jarno Rajahalme Committed by Pravin B Shelar
Browse files

openvswitch: Fix the type of struct ovs_key_nd nd_target field.



Should be the same as other IPv6 address fields.

Current master produces sparse warnings without this change.

Signed-off-by: default avatarJarno Rajahalme <jrajahalme@nicira.com>
Signed-off-by: default avatarPravin B Shelar <pshelar@nicira.com>
parent e1f9c356
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -400,7 +400,7 @@ struct ovs_key_arp {
};

struct ovs_key_nd {
	__u32 nd_target[4];
	__be32	nd_target[4];
	__u8	nd_sll[ETH_ALEN];
	__u8	nd_tll[ETH_ALEN];
};