mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2025-02-16 19:35:33 +07:00
ACPI / PCI: Stub out pci_acpi_crs_quirks() and make it x86 specific
For pci_acpi_crs_quirks(), ia64 already doesn't use it, and we can not foresee it should be used in ARM64, so stub out pci_acpi_crs_quirks() to avoid introducing platform specific dummy stub function. Signed-off-by: Hanjun Guo <hanjun.guo@linaro.org> Reviewed-by: Bjorn Helgaas <bhelgaas@google.com> Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
This commit is contained in:
parent
89ca3b8819
commit
6b90f55f63
@ -92,7 +92,6 @@ ia64_acpi_release_global_lock (unsigned int *lock)
|
|||||||
#endif
|
#endif
|
||||||
#define acpi_processor_cstate_check(x) (x) /* no idle limits on IA64 :) */
|
#define acpi_processor_cstate_check(x) (x) /* no idle limits on IA64 :) */
|
||||||
static inline void disable_acpi(void) { }
|
static inline void disable_acpi(void) { }
|
||||||
static inline void pci_acpi_crs_quirks(void) { }
|
|
||||||
|
|
||||||
#ifdef CONFIG_IA64_GENERIC
|
#ifdef CONFIG_IA64_GENERIC
|
||||||
const char *acpi_get_sysname (void);
|
const char *acpi_get_sysname (void);
|
||||||
|
@ -96,7 +96,12 @@ struct pci_dev *acpi_get_pci_dev(acpi_handle);
|
|||||||
/* Arch-defined function to add a bus to the system */
|
/* Arch-defined function to add a bus to the system */
|
||||||
|
|
||||||
struct pci_bus *pci_acpi_scan_root(struct acpi_pci_root *root);
|
struct pci_bus *pci_acpi_scan_root(struct acpi_pci_root *root);
|
||||||
|
|
||||||
|
#ifdef CONFIG_X86
|
||||||
void pci_acpi_crs_quirks(void);
|
void pci_acpi_crs_quirks(void);
|
||||||
|
#else
|
||||||
|
static inline void pci_acpi_crs_quirks(void) { }
|
||||||
|
#endif
|
||||||
|
|
||||||
/* --------------------------------------------------------------------------
|
/* --------------------------------------------------------------------------
|
||||||
Processor
|
Processor
|
||||||
|
Loading…
Reference in New Issue
Block a user