On Sat, Jun 14, 2025 at 10:56:51AM +0530, Manivannan Sadhasivam wrote: > --- a/drivers/pci/probe.c > +++ b/drivers/pci/probe.c > @@ -2508,36 +2508,6 @@ bool pci_bus_read_dev_vendor_id(struct pci_bus *bus, int devfn, u32 *l, > } > EXPORT_SYMBOL(pci_bus_read_dev_vendor_id); > > -static struct platform_device *pci_pwrctrl_create_device(struct pci_bus *bus, int devfn) > -{ > - struct pci_host_bridge *host = pci_find_host_bridge(bus); > - struct platform_device *pdev; > - struct device_node *np; Looks like... #include <linux/of_platform.h> #include <linux/platform_device.h> ...can also be removed from probe.c, both introduced by 957f40d039a9. Thanks, Lukas