vlib: deuglify the offset finding loop in pci.c

Type: style
Fixes: 054229ebbdeb3f87d96c1abf93b511c86cd6ff0f

Change-Id: I7c3080db94566af249e5082d59a4e6373c616888
Signed-off-by: Vratko Polak <vrpolak@cisco.com>
diff --git a/src/vlib/pci/pci.c b/src/vlib/pci/pci.c
index 1845a62..cd580f0 100644
--- a/src/vlib/pci/pci.c
+++ b/src/vlib/pci/pci.c
@@ -176,11 +176,7 @@
     return err;
 
   offset = cfg.cap_ptr;
-  /* Make gcc happy, otherwise gcc fails build due to cap not set if offset ==
-   * 0 */
-  cap = (pci_capability_pcie_t *) (cfg.data + offset);
-
-  while (offset)
+  do
     {
       cap = (pci_capability_pcie_t *) (cfg.data + offset);
 
@@ -189,6 +185,7 @@
 
       offset = cap->next_offset;
     }
+  while (offset);
 
   if (cap->capability_id != PCI_CAP_ID_PCIE)
     return clib_error_return (0, "PCIe capability config not found");