diff options
author | Stefan Reinauer <stefan.reinauer@coreboot.org> | 2013-01-04 10:07:28 -0800 |
---|---|---|
committer | Ronald G. Minnich <rminnich@gmail.com> | 2013-01-04 19:35:14 +0100 |
commit | c4077d44297c95100cc9eb19df1ab3b16261942f (patch) | |
tree | c22c56ee22526a6b8c7c513b50f10a8babdb41ef /src | |
parent | 9027845d65e5e05a45894eb176070fd99e2e073c (diff) |
Make PCIe config options depend on PCIe support
Change-Id: I42452a044dc75e35876fcea1736481e538eed663
Signed-off-by: Stefan Reinauer <reinauer@google.com>
Reviewed-on: http://review.coreboot.org/2100
Tested-by: build bot (Jenkins)
Reviewed-by: Ronald G. Minnich <rminnich@gmail.com>
Diffstat (limited to 'src')
-rw-r--r-- | src/device/Kconfig | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/device/Kconfig b/src/device/Kconfig index 849cc1511c..82583a4c26 100644 --- a/src/device/Kconfig +++ b/src/device/Kconfig @@ -212,6 +212,7 @@ config CARDBUS_PLUGIN_SUPPORT config PCIEXP_COMMON_CLOCK prompt "Enable PCIe Common Clock" bool + depends on PCIEXP_PLUGIN_SUPPORT default n help Detect and enable Common Clock on PCIe links. @@ -219,6 +220,7 @@ config PCIEXP_COMMON_CLOCK config PCIEXP_ASPM prompt "Enable PCIe ASPM" bool + depends on PCIEXP_PLUGIN_SUPPORT default n help Detect and enable ASPM on PCIe links. |