make use of the swap macro and remove unnecessary variable tmp_addr.
This makes the code easier to read and maintain.
This code was detected with the help of Coccinelle.
Signed-off-by: Gustavo A. R. Silva <garsilva@embeddedor.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
        struct ipv6_destopt_hao *hao;
        struct inet6_skb_parm *opt = IP6CB(skb);
        struct ipv6hdr *ipv6h = ipv6_hdr(skb);
-       struct in6_addr tmp_addr;
        int ret;
 
        if (opt->dsthao) {
        if (skb->ip_summed == CHECKSUM_COMPLETE)
                skb->ip_summed = CHECKSUM_NONE;
 
-       tmp_addr = ipv6h->saddr;
-       ipv6h->saddr = hao->addr;
-       hao->addr = tmp_addr;
+       swap(ipv6h->saddr, hao->addr);
 
        if (skb->tstamp == 0)
                __net_timestamp(skb);