bus/pci: update files description

Some files were starting with some outdated introductions.

Signed-off-by: Thomas Monjalon <thomas@monjalon.net>
Reviewed-by: David Marchand <david.marchand@redhat.com>
This commit is contained in:
Thomas Monjalon 2021-05-02 22:15:52 +02:00 committed by David Marchand
parent 82a153151f
commit aa777f003a
4 changed files with 4 additions and 16 deletions

View File

@ -45,14 +45,7 @@
/**
* @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;

View File

@ -21,11 +21,7 @@
/**
* @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;

View 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.

View File

@ -8,8 +8,7 @@
/**
* @file
*
* RTE PCI Bus Interface
* PCI device & driver interface
*/
#ifdef __cplusplus