On Sat, Dec 8, 2018 at 11:46 PM Sinan Kaya <okaya(a)kernel.org> wrote:
We are compiling PCI code today for systems with ACPI and no PCI
device present. Remove the useless code and reduce the tight
dependency.
+#ifdef CONFIG_PCI
struct pci_dev *acpi_get_pci_dev(acpi_handle);
+#else
+static inline struct pci_dev *acpi_get_pci_dev(acpi_handle hndl)
Can you spell handle fully?
+{
+ return NULL;
+}
+#endif
--
With Best Regards,
Andy Shevchenko