ipacm: Adding changes to use right check while checking version support
Using defined flag support removed in latest branch. So adding changes
to use right check when using the version check.
Change-Id: Ia832ce763156e07fc5475e4de4d11522b2fe732c
diff --git a/ipacm/src/IPACM_Lan.cpp b/ipacm/src/IPACM_Lan.cpp
index c83a729..f70c58d 100644
--- a/ipacm/src/IPACM_Lan.cpp
+++ b/ipacm/src/IPACM_Lan.cpp
@@ -6632,11 +6632,11 @@
&flt_eq.eq_attrib, sizeof(rule->eq_attrib));
//add IHL offsets
-#ifdef FEATURE_IPA_V3
+ if(IPACM_Iface::ipacmcfg->GetIPAVer() >= IPA_HW_v3_0)
rule->eq_attrib.rule_eq_bitmap |= (1<<10);
-#else
+ else
rule->eq_attrib.rule_eq_bitmap |= (1<<4);
-#endif
+
rule->eq_attrib.num_ihl_offset_range_16 = 1;
if (iptype == IPA_IP_v4)
rule->eq_attrib.ihl_offset_range_16[0].offset = 0x82;