diff options
author | 2018-04-11 08:08:30 -0700 | |
---|---|---|
committer | 2018-07-17 08:53:33 +0000 | |
commit | 208c29aac523231af2420a95ba7e5d361698780b (patch) | |
tree | d16ac1d772d55afdf5277345a1ec8db211d1f27f /extras/vom/vom/l2_binding_cmds.hpp | |
parent | 4faab21a75a208d83c184bd424938c4dbf6b38e4 (diff) |
VOM: support for pipes
Change-Id: I5c381dfe2f926f94a34ee8ed8f1b9ec6038d5fe2
Signed-off-by: Neale Ranns <neale.ranns@cisco.com>
Diffstat (limited to 'extras/vom/vom/l2_binding_cmds.hpp')
-rw-r--r-- | extras/vom/vom/l2_binding_cmds.hpp | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/extras/vom/vom/l2_binding_cmds.hpp b/extras/vom/vom/l2_binding_cmds.hpp index d105c18a40d..3d138b1d1af 100644 --- a/extras/vom/vom/l2_binding_cmds.hpp +++ b/extras/vom/vom/l2_binding_cmds.hpp @@ -29,7 +29,7 @@ namespace l2_binding_cmds { * A functor class that binds L2 configuration to an interface */ class bind_cmd - : public rpc_cmd<HW::item<bool>, rc_t, vapi::Sw_interface_set_l2_bridge> + : public rpc_cmd<HW::item<bool>, vapi::Sw_interface_set_l2_bridge> { public: /** @@ -72,7 +72,7 @@ private: * A cmd class that Unbinds L2 configuration from an interface */ class unbind_cmd - : public rpc_cmd<HW::item<bool>, rc_t, vapi::Sw_interface_set_l2_bridge> + : public rpc_cmd<HW::item<bool>, vapi::Sw_interface_set_l2_bridge> { public: /** @@ -118,7 +118,6 @@ private: * A cmd class sets the VTR operation */ class set_vtr_op_cmd : public rpc_cmd<HW::item<l2_binding::l2_vtr_op_t>, - rc_t, vapi::L2_interface_vlan_tag_rewrite> { public: |