diff options
author | Pravin B Shelar <pshelar@nicira.com> | 2013-06-21 00:08:14 +0200 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2013-06-24 09:16:46 +0200 |
commit | 479b1a5825f68f9b63d26a13ca25ffbb7d2617ad (patch) | |
tree | b7f5f392a74f685eabf5244f1216e754de909dcd /net/openvswitch/vport.c | |
parent | bridge: fix a typo in comments (diff) | |
download | linux-479b1a5825f68f9b63d26a13ca25ffbb7d2617ad.tar.xz linux-479b1a5825f68f9b63d26a13ca25ffbb7d2617ad.zip |
openvswitch: Use correct config guard.
This bug was introduced by commit aa310701e787087
(openvswitch: Add gre tunnel support.)
Signed-off-by: Pravin B Shelar <pshelar@nicira.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/openvswitch/vport.c')
-rw-r--r-- | net/openvswitch/vport.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/openvswitch/vport.c b/net/openvswitch/vport.c index f52dfb9cb5a7..ba81294219ac 100644 --- a/net/openvswitch/vport.c +++ b/net/openvswitch/vport.c @@ -39,7 +39,7 @@ static const struct vport_ops *vport_ops_list[] = { &ovs_netdev_vport_ops, &ovs_internal_vport_ops, -#ifdef CONFIG_NET_IPGRE_DEMUX +#if IS_ENABLED(CONFIG_NET_IPGRE_DEMUX) &ovs_gre_vport_ops, #endif }; |