misc: move to new pool_foreach macros
[vpp.git] / src / vnet / devices / virtio / virtio_api.c
index d993104..4d0b663 100644 (file)
@@ -22,7 +22,6 @@
 
 #include <vnet/interface.h>
 #include <vnet/api_errno.h>
-#include <vnet/ip/ip.h>
 #include <vnet/devices/virtio/virtio.h>
 #include <vnet/devices/virtio/pci.h>
 #include <vlib/pci/pci_types_api.h>
@@ -233,14 +232,13 @@ static void
   if (!reg)
     return;
 
-  pool_foreach (vif, vmx->interfaces, (
-                                       {
-                                       if (vif->type == VIRTIO_IF_TYPE_PCI)
-                                       {
-                                       virtio_pci_send_sw_interface_details
-                                       (am, reg, vif, mp->context);}
-                                       }
-               ));
+  pool_foreach (vif, vmx->interfaces)
+  {
+    if (vif->type == VIRTIO_IF_TYPE_PCI)
+      {
+       virtio_pci_send_sw_interface_details (am, reg, vif, mp->context);
+      }
+  }
 }
 
 #define vl_msg_name_crc_list