[IPV4]: struct ipcm_cookie annotation

->addr is net-endian

Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Signed-off-by: David S. Miller <davem@davemloft.net>
diff --git a/include/net/ip.h b/include/net/ip.h
index 6da1229..b40bd2f 100644
--- a/include/net/ip.h
+++ b/include/net/ip.h
@@ -45,7 +45,7 @@
 
 struct ipcm_cookie
 {
-	u32			addr;
+	__be32			addr;
 	int			oif;
 	struct ip_options	*opt;
 };
diff --git a/net/ipv4/raw.c b/net/ipv4/raw.c
index 49e5b4b..b430cf2 100644
--- a/net/ipv4/raw.c
+++ b/net/ipv4/raw.c
@@ -382,7 +382,7 @@
 	struct rtable *rt = NULL;
 	int free = 0;
 	__be32 daddr;
-	u32 saddr;
+	__be32 saddr;
 	u8  tos;
 	int err;