diff options
author | Bjorn Helgaas <bhelgaas@google.com> | 2014-04-28 18:20:34 -0400 |
---|---|---|
committer | Rafael J. Wysocki <rafael.j.wysocki@intel.com> | 2014-04-29 17:31:15 -0400 |
commit | b3413afb4a8995a67f5df6218c6d0ff3a53a6978 (patch) | |
tree | f8fcc820b3a6e3e5b65359177a23542778d8f206 /drivers/pnp | |
parent | d1db0eea852497762cab43b905b879dfcd3b8987 (diff) |
PNP: Fix compile error in quirks.c
Fix the compile error:
drivers/pnp/quirks.c:393:2: error: implicit declaration of function 'pcibios_bus_to_resource'
that occurs when building with CONFIG_PCI unset. The quirk is only
relevent to Intel devices, so we could use "#if defined(CONFIG_X86) &&
defined(CONFIG_PCI)" instead, but testing CONFIG_X86 is not strictly
necessary.
Fixes: cb171f7abb9a (PNP: Work around BIOS defects in Intel MCH area reporting)
Reported-by: Randy Dunlap <rdunlap@infradead.org>
Signed-off-by: Bjorn Helgaas <bhelgaas@google.com>
Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
Diffstat (limited to 'drivers/pnp')
-rw-r--r-- | drivers/pnp/quirks.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/pnp/quirks.c b/drivers/pnp/quirks.c index 3736bc408adb..ebf0d6710b5a 100644 --- a/drivers/pnp/quirks.c +++ b/drivers/pnp/quirks.c | |||
@@ -335,7 +335,7 @@ static void quirk_amd_mmconfig_area(struct pnp_dev *dev) | |||
335 | } | 335 | } |
336 | #endif | 336 | #endif |
337 | 337 | ||
338 | #ifdef CONFIG_X86 | 338 | #ifdef CONFIG_PCI |
339 | /* Device IDs of parts that have 32KB MCH space */ | 339 | /* Device IDs of parts that have 32KB MCH space */ |
340 | static const unsigned int mch_quirk_devices[] = { | 340 | static const unsigned int mch_quirk_devices[] = { |
341 | 0x0154, /* Ivy Bridge */ | 341 | 0x0154, /* Ivy Bridge */ |
@@ -440,7 +440,7 @@ static struct pnp_fixup pnp_fixups[] = { | |||
440 | #ifdef CONFIG_AMD_NB | 440 | #ifdef CONFIG_AMD_NB |
441 | {"PNP0c01", quirk_amd_mmconfig_area}, | 441 | {"PNP0c01", quirk_amd_mmconfig_area}, |
442 | #endif | 442 | #endif |
443 | #ifdef CONFIG_X86 | 443 | #ifdef CONFIG_PCI |
444 | {"PNP0c02", quirk_intel_mch}, | 444 | {"PNP0c02", quirk_intel_mch}, |
445 | #endif | 445 | #endif |
446 | {""} | 446 | {""} |