summaryrefslogtreecommitdiffstats
path: root/vnet/vnet/ethernet/ethernet.h
diff options
context:
space:
mode:
authorDamjan Marion <damarion@cisco.com>2016-08-16 22:53:54 +0200
committerDave Barach <openvpp@barachs.net>2016-08-17 00:52:57 +0000
commit607de1a0638fa45db49295f9ed51a7f9a5e38706 (patch)
tree1d8b8fd307715d685bb8d1f6b1ff34ac54052d2e /vnet/vnet/ethernet/ethernet.h
parent256656735c49983a5a2ca94015facca717094730 (diff)
Coding standards cleanup - remove trailing whitespace, fixes VPP-332
Change-Id: I649a17f8fa47599faf438b2e596f53761790d10c Signed-off-by: Damjan Marion <damarion@cisco.com>
Diffstat (limited to 'vnet/vnet/ethernet/ethernet.h')
-rw-r--r--vnet/vnet/ethernet/ethernet.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/vnet/vnet/ethernet/ethernet.h b/vnet/vnet/ethernet/ethernet.h
index be5b99c74b6..d0eec1fc6b4 100644
--- a/vnet/vnet/ethernet/ethernet.h
+++ b/vnet/vnet/ethernet/ethernet.h
@@ -444,7 +444,7 @@ eth_identify_subint (vnet_hw_interface_t * hi,
// Each comparison is checking both the valid flag and the number of tags
// (incorporating exact-match/non-exact-match).
- // check for specific double tag
+ // check for specific double tag
subint = &qinq_intf->subint;
if ((subint->flags & match_flags) == match_flags)
goto matched;
@@ -454,7 +454,7 @@ eth_identify_subint (vnet_hw_interface_t * hi,
if ((subint->flags & match_flags) == match_flags)
goto matched;
- // check for specific single tag
+ // check for specific single tag
subint = &vlan_intf->single_tag_subint;
if ((subint->flags & match_flags) == match_flags)
goto matched;
@@ -464,7 +464,7 @@ eth_identify_subint (vnet_hw_interface_t * hi,
if ((subint->flags & match_flags) == match_flags)
goto matched;
- // check for default interface
+ // check for default interface
subint = &main_intf->default_subint;
if ((subint->flags & match_flags) == match_flags)
goto matched;