mirror of
				https://github.com/torvalds/linux.git
				synced 2025-11-04 10:40:15 +02:00 
			
		
		
		
	PCI: Remove struct pci_dev->driver
There are no remaining uses of the struct pci_dev->driver pointer, so remove it. Link: https://lore.kernel.org/r/20211004125935.2300113-12-u.kleine-koenig@pengutronix.de Signed-off-by: Uwe Kleine-König <u.kleine-koenig@pengutronix.de> Signed-off-by: Bjorn Helgaas <bhelgaas@google.com>
This commit is contained in:
		
							parent
							
								
									2a4d9408c9
								
							
						
					
					
						commit
						b5f9c644eb
					
				
					 2 changed files with 0 additions and 5 deletions
				
			
		| 
						 | 
				
			
			@ -319,12 +319,10 @@ static long local_pci_probe(void *_ddi)
 | 
			
		|||
	 * its remove routine.
 | 
			
		||||
	 */
 | 
			
		||||
	pm_runtime_get_sync(dev);
 | 
			
		||||
	pci_dev->driver = pci_drv;
 | 
			
		||||
	rc = pci_drv->probe(pci_dev, ddi->id);
 | 
			
		||||
	if (!rc)
 | 
			
		||||
		return rc;
 | 
			
		||||
	if (rc < 0) {
 | 
			
		||||
		pci_dev->driver = NULL;
 | 
			
		||||
		pm_runtime_put_sync(dev);
 | 
			
		||||
		return rc;
 | 
			
		||||
	}
 | 
			
		||||
| 
						 | 
				
			
			@ -390,7 +388,6 @@ static int pci_call_probe(struct pci_driver *drv, struct pci_dev *dev,
 | 
			
		|||
 * @pci_dev: PCI device being probed
 | 
			
		||||
 *
 | 
			
		||||
 * returns 0 on success, else error.
 | 
			
		||||
 * side-effect: pci_dev->driver is set to drv when drv claims pci_dev.
 | 
			
		||||
 */
 | 
			
		||||
static int __pci_device_probe(struct pci_driver *drv, struct pci_dev *pci_dev)
 | 
			
		||||
{
 | 
			
		||||
| 
						 | 
				
			
			@ -465,7 +462,6 @@ static void pci_device_remove(struct device *dev)
 | 
			
		|||
		pm_runtime_put_noidle(dev);
 | 
			
		||||
	}
 | 
			
		||||
	pcibios_free_irq(pci_dev);
 | 
			
		||||
	pci_dev->driver = NULL;
 | 
			
		||||
	pci_iov_remove(pci_dev);
 | 
			
		||||
 | 
			
		||||
	/* Undo the runtime PM settings in local_pci_probe() */
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -342,7 +342,6 @@ struct pci_dev {
 | 
			
		|||
	u16		pcie_flags_reg;	/* Cached PCIe Capabilities Register */
 | 
			
		||||
	unsigned long	*dma_alias_mask;/* Mask of enabled devfn aliases */
 | 
			
		||||
 | 
			
		||||
	struct pci_driver *driver;	/* Driver bound to this device */
 | 
			
		||||
	u64		dma_mask;	/* Mask of the bits of bus address this
 | 
			
		||||
					   device implements.  Normally this is
 | 
			
		||||
					   0xffffffff.  You only need to change
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
		Reference in a new issue