From: Petri Savolainen <petri.savolai...@linaro.org>

Use common values between ipsec parse and
packet protocol layer enums.

Signed-off-by: Petri Savolainen <petri.savolai...@linaro.org>
---
/** Email created from pull request 273 (psavol:next-packet-parse)
 ** https://github.com/Linaro/odp/pull/273
 ** Patch: https://github.com/Linaro/odp/pull/273.patch
 ** Base sha: d22c949cc466bf28de559855a1cb525740578137
 ** Merge commit sha: 0724c6474bb6db484fdbdbb1b14035a33ba9525d
 **/
 include/odp/api/spec/ipsec.h | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/include/odp/api/spec/ipsec.h b/include/odp/api/spec/ipsec.h
index 26e852fca..4a33af8ea 100644
--- a/include/odp/api/spec/ipsec.h
+++ b/include/odp/api/spec/ipsec.h
@@ -74,19 +74,19 @@ typedef enum odp_ipsec_op_mode_t {
  */
 typedef enum odp_ipsec_proto_layer_t {
        /** No layers */
-       ODP_IPSEC_LAYER_NONE = 0,
+       ODP_IPSEC_LAYER_NONE = ODP_PROTO_LAYER_NONE,
 
        /** Layer L2 protocols (Ethernet, VLAN, etc) */
-       ODP_IPSEC_LAYER_L2,
+       ODP_IPSEC_LAYER_L2 = ODP_PROTO_LAYER_L2,
 
        /** Layer L3 protocols (IPv4, IPv6, ICMP, IPSEC, etc) */
-       ODP_IPSEC_LAYER_L3,
+       ODP_IPSEC_LAYER_L3 = ODP_PROTO_LAYER_L3,
 
        /** Layer L4 protocols (UDP, TCP, SCTP) */
-       ODP_IPSEC_LAYER_L4,
+       ODP_IPSEC_LAYER_L4 = ODP_PROTO_LAYER_L4,
 
        /** All layers */
-       ODP_IPSEC_LAYER_ALL
+       ODP_IPSEC_LAYER_ALL = ODP_PROTO_LAYER_ALL
 
 } odp_ipsec_proto_layer_t;
 

Reply via email to