]> git.droids-corp.org - dpdk.git/commitdiff
bus/pci: update files description
authorThomas Monjalon <thomas@monjalon.net>
Sun, 2 May 2021 20:15:52 +0000 (22:15 +0200)
committerDavid Marchand <david.marchand@redhat.com>
Tue, 6 Jul 2021 09:27:55 +0000 (11:27 +0200)
Some files were starting with some outdated introductions.

Signed-off-by: Thomas Monjalon <thomas@monjalon.net>
Reviewed-by: David Marchand <david.marchand@redhat.com>
drivers/bus/pci/bsd/pci.c
drivers/bus/pci/linux/pci.c
drivers/bus/pci/linux/pci_vfio.c
drivers/bus/pci/rte_bus_pci.h

index 4b8a208781992735e52dceb027eaae8c7d8c1eef..d189bff311f2f28c66aecbc108b9b8389e5d641a 100644 (file)
 
 /**
  * @file
- * PCI probing under BSD
- *
- * This code is used to simulate a PCI probe by parsing information in
- * sysfs. Moreover, when a registered driver matches a device, the
- * kernel driver currently using it is unloaded and replaced by
- * nic_uio module, which is a very minimal userland driver for Intel
- * network card, only providing access to PCI BAR to applications, and
- * enabling bus master.
+ * PCI probing under BSD.
  */
 
 extern struct rte_pci_bus rte_pci_bus;
index c2fcc1ab1d45328fafd11264e9a5adf3ab7795a1..80ffe7633aed07fc47897ff067d59323ba579dc5 100644 (file)
 
 /**
  * @file
- * PCI probing under linux
- *
- * This code is used to simulate a PCI probe by parsing information in sysfs.
- * When a registered device matches a driver, it is then initialized with
- * IGB_UIO driver (or doesn't initialize, if the device wasn't bound to it).
+ * PCI probing using Linux sysfs.
  */
 
 extern struct rte_pci_bus rte_pci_bus;
index 07706f73388589ec88dd0a44a5e9faae1d00f34d..a02426914027bab723de9cc3f64ceedc2b09e0cd 100644 (file)
@@ -29,7 +29,7 @@
 
 /**
  * @file
- * PCI probing under linux (VFIO version)
+ * PCI probing using Linux VFIO.
  *
  * This code tries to determine if the PCI device is bound to VFIO driver,
  * and initialize it (map BARs, set up interrupts) if that's the case.
index 976c33c921403e864d6361ab695519e664e0e8ae..583470e831ddbd39953660221b4f07742c83aab1 100644 (file)
@@ -8,8 +8,7 @@
 
 /**
  * @file
- *
- * RTE PCI Bus Interface
+ * PCI device & driver interface
  */
 
 #ifdef __cplusplus