bus/pci: enhance driver pointer documentation
[dpdk.git] / drivers / bus / pci / pci_common.c
index 4a3a87f..37ab879 100644 (file)
@@ -207,11 +207,6 @@ rte_pci_probe_one_driver(struct rte_pci_driver *dr,
        RTE_LOG(DEBUG, EAL, "  probe driver: %x:%x %s\n", dev->id.vendor_id,
                dev->id.device_id, dr->driver.name);
 
-       /*
-        * reference driver structure
-        * This needs to be before rte_pci_map_device(), as it enables to use
-        * driver flags for adjusting configuration.
-        */
        if (!already_probed) {
                enum rte_iova_mode dev_iova_mode;
                enum rte_iova_mode iova_mode;
@@ -247,9 +242,16 @@ rte_pci_probe_one_driver(struct rte_pci_driver *dr,
                        return -ENOMEM;
                }
 
-               if (dr->drv_flags & RTE_PCI_DRV_NEED_MAPPING) {
+               /*
+                * Reference driver structure.
+                * This needs to be before rte_pci_map_device(), as it enables
+                * to use driver flags for adjusting configuration.
+                */
+               dev->driver = dr;
+               if (dev->driver->drv_flags & RTE_PCI_DRV_NEED_MAPPING) {
                        ret = rte_pci_map_device(dev);
                        if (ret != 0) {
+                               dev->driver = NULL;
                                rte_intr_instance_free(dev->vfio_req_intr_handle);
                                dev->vfio_req_intr_handle = NULL;
                                rte_intr_instance_free(dev->intr_handle);
@@ -257,8 +259,6 @@ rte_pci_probe_one_driver(struct rte_pci_driver *dr,
                                return ret;
                        }
                }
-
-               dev->driver = dr;
        }
 
        RTE_LOG(INFO, EAL, "Probe PCI driver: %s (%x:%x) device: "PCI_PRI_FMT" (socket %i)\n",