1. NAME

pci_unregister_driver - unregister a pci driver

2. SYNOPSIS

void pci_unregister_driver(struct pci_driver *  drv );

3. ARGUMENTS

drv
    the driver structure to unregister

4. DESCRIPTION

Deletes the driver structure from the list of registered PCI drivers, gives it a chance to clean up by calling its remove function for each device it was responsible for, and marks those devices as driverless.

5. COPYRIGHT