Fixed packet I/O in p4-14 programs

Tested on BMv2 and working

Change-Id: I834d7b5a8627181c6888500545e1bdbfe9af8dc1
diff --git a/tools/test/p4src/p4-14/wcmp.p4 b/tools/test/p4src/p4-14/wcmp.p4
index a388be7..a3514b4 100644
--- a/tools/test/p4src/p4-14/wcmp.p4
+++ b/tools/test/p4src/p4-14/wcmp.p4
@@ -90,7 +90,6 @@
 }
 
 control ingress {
-    ingress_pkt_io();
     if (not valid(packet_out_hdr)) {
         apply(table0) {
             wcmp_group {
@@ -102,9 +101,6 @@
             }
         }
     }
+    ingress_pkt_io_control();
     process_port_counters();
-}
-
-control egress {
-    egress_pkt_io();
-}
+}
\ No newline at end of file