diff options
author | Hadar Hen Zion <hadarh@mellanox.com> | 2013-02-03 22:01:21 -0500 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2013-02-04 13:26:50 -0500 |
commit | f9d96862cacd1177d76d82f70f88ac57cb05e6e0 (patch) | |
tree | 72f1ba10902c434df4053ef312d006f176413d44 /drivers/net/ethernet/mellanox | |
parent | 377d97393d93cca146937058986050a30857eec7 (diff) |
net/mlx4_en: Fix compilation error when CONFIG_INET isn't defined
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>
Diffstat (limited to 'drivers/net/ethernet/mellanox')
-rw-r--r-- | drivers/net/ethernet/mellanox/mlx4/en_ethtool.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/drivers/net/ethernet/mellanox/mlx4/en_ethtool.c b/drivers/net/ethernet/mellanox/mlx4/en_ethtool.c index 3e993d5a1994..f523f0204f1f 100644 --- a/drivers/net/ethernet/mellanox/mlx4/en_ethtool.c +++ b/drivers/net/ethernet/mellanox/mlx4/en_ethtool.c | |||
@@ -711,6 +711,7 @@ static int mlx4_en_ethtool_add_mac_rule_by_ipv4(struct mlx4_en_priv *priv, | |||
711 | struct mlx4_spec_list *spec_l2, | 711 | struct mlx4_spec_list *spec_l2, |
712 | __be32 ipv4_dst) | 712 | __be32 ipv4_dst) |
713 | { | 713 | { |
714 | #ifdef CONFIG_INET | ||
714 | __be64 be_mac = 0; | 715 | __be64 be_mac = 0; |
715 | unsigned char mac[ETH_ALEN]; | 716 | unsigned char mac[ETH_ALEN]; |
716 | 717 | ||
@@ -726,6 +727,9 @@ static int mlx4_en_ethtool_add_mac_rule_by_ipv4(struct mlx4_en_priv *priv, | |||
726 | } | 727 | } |
727 | 728 | ||
728 | return mlx4_en_ethtool_add_mac_rule(cmd, rule_list_h, spec_l2, &mac[0]); | 729 | return mlx4_en_ethtool_add_mac_rule(cmd, rule_list_h, spec_l2, &mac[0]); |
730 | #else | ||
731 | return -EINVAL; | ||
732 | #endif | ||
729 | } | 733 | } |
730 | 734 | ||
731 | static int add_ip_rule(struct mlx4_en_priv *priv, | 735 | static int add_ip_rule(struct mlx4_en_priv *priv, |