Commit 412f39a5 authored by Greg Kroah-Hartman's avatar Greg Kroah-Hartman

PCI: changed pci_?et_drvdata to use the generic driver model functions

     instead of accessing the data directly.
parent 19652e26
......@@ -747,17 +747,17 @@ static inline int pci_module_init(struct pci_driver *drv)
pci_resource_start((dev),(bar)) + 1))
/* Similar to the helpers above, these manipulate per-pci_dev
* driver-specific data. Currently stored as pci_dev::driver_data,
* a void pointer, but it is not present on older kernels.
* driver-specific data. They are really just a wrapper around
* the generic device structure functions of these calls.
*/
static inline void *pci_get_drvdata (struct pci_dev *pdev)
{
return pdev->dev.driver_data;
return dev_get_drvdata(&pdev->dev);
}
static inline void pci_set_drvdata (struct pci_dev *pdev, void *data)
{
pdev->dev.driver_data = data;
dev_set_drvdata(&pdev->dev, data);
}
/*
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment