ip_eth_mc_map function can't be used when CONFIG_INET isn't defined.
Fixed compilation error by adding CONFIG_INET define check before using the
function.
Signed-off-by: Hadar Hen Zion <hadarh@mellanox.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
                                                struct mlx4_spec_list *spec_l2,
                                                __be32 ipv4_dst)
 {
+#ifdef CONFIG_INET
        __be64 be_mac = 0;
        unsigned char mac[ETH_ALEN];
 
        }
 
        return mlx4_en_ethtool_add_mac_rule(cmd, rule_list_h, spec_l2, &mac[0]);
+#else
+       return -EINVAL;
+#endif
 }
 
 static int add_ip_rule(struct mlx4_en_priv *priv,