|
@@ -534,7 +534,7 @@ extern void pci_sort_breadthfirst(void);
|
|
|
#ifdef CONFIG_PCI_LEGACY
|
|
|
struct pci_dev __deprecated *pci_find_device(unsigned int vendor,
|
|
|
unsigned int device,
|
|
|
- const struct pci_dev *from);
|
|
|
+ struct pci_dev *from);
|
|
|
struct pci_dev __deprecated *pci_find_slot(unsigned int bus,
|
|
|
unsigned int devfn);
|
|
|
#endif /* CONFIG_PCI_LEGACY */
|
|
@@ -550,7 +550,7 @@ struct pci_dev *pci_get_device(unsigned int vendor, unsigned int device,
|
|
|
struct pci_dev *from);
|
|
|
struct pci_dev *pci_get_subsys(unsigned int vendor, unsigned int device,
|
|
|
unsigned int ss_vendor, unsigned int ss_device,
|
|
|
- const struct pci_dev *from);
|
|
|
+ struct pci_dev *from);
|
|
|
struct pci_dev *pci_get_slot(struct pci_bus *bus, unsigned int devfn);
|
|
|
struct pci_dev *pci_get_bus_and_slot(unsigned int bus, unsigned int devfn);
|
|
|
struct pci_dev *pci_get_class(unsigned int class, struct pci_dev *from);
|
|
@@ -816,7 +816,7 @@ _PCI_NOP_ALL(write,)
|
|
|
|
|
|
static inline struct pci_dev *pci_find_device(unsigned int vendor,
|
|
|
unsigned int device,
|
|
|
- const struct pci_dev *from)
|
|
|
+ struct pci_dev *from)
|
|
|
{
|
|
|
return NULL;
|
|
|
}
|
|
@@ -838,7 +838,7 @@ static inline struct pci_dev *pci_get_subsys(unsigned int vendor,
|
|
|
unsigned int device,
|
|
|
unsigned int ss_vendor,
|
|
|
unsigned int ss_device,
|
|
|
- const struct pci_dev *from)
|
|
|
+ struct pci_dev *from)
|
|
|
{
|
|
|
return NULL;
|
|
|
}
|