diff options
| author | Tony Luck <tony.luck@intel.com> | 2011-08-09 15:36:00 -0400 |
|---|---|---|
| committer | Tony Luck <tony.luck@intel.com> | 2011-08-09 15:36:00 -0400 |
| commit | 88ff98775885d72618cbfc5ed6b865593cb66891 (patch) | |
| tree | 24c6f57c344fede08888986836b3faa5058cd701 | |
| parent | 322a8b034003c0d46d39af85bf24fee27b902f48 (diff) | |
[IA64] fix "allnoconfig" build
Link errors:
arch/ia64/kernel/built-in.o: In function `arch_setup_dmar_msi':
(.text+0x35972): undefined reference to `dmar_msi_write'
... and more ...
because allnoconfig has CONFIG_DMAR=y due to the "select DMAR"
in arch/ia64/Kconfig under config IA64_GENERIC.
Drop that select, but add CONFIG_DMAR=y to generic_defconfig so
we keep testbuilding the DMAR code.
Signed-off-by: Tony Luck <tony.luck@intel.com>
| -rw-r--r-- | arch/ia64/Kconfig | 1 | ||||
| -rw-r--r-- | arch/ia64/configs/generic_defconfig | 1 |
2 files changed, 1 insertions, 1 deletions
diff --git a/arch/ia64/Kconfig b/arch/ia64/Kconfig index 12485471495..3ff7785b3be 100644 --- a/arch/ia64/Kconfig +++ b/arch/ia64/Kconfig | |||
| @@ -162,7 +162,6 @@ config IA64_GENERIC | |||
| 162 | select ACPI_NUMA | 162 | select ACPI_NUMA |
| 163 | select SWIOTLB | 163 | select SWIOTLB |
| 164 | select PCI_MSI | 164 | select PCI_MSI |
| 165 | select DMAR | ||
| 166 | help | 165 | help |
| 167 | This selects the system type of your hardware. A "generic" kernel | 166 | This selects the system type of your hardware. A "generic" kernel |
| 168 | will run on any supported IA-64 system. However, if you configure | 167 | will run on any supported IA-64 system. However, if you configure |
diff --git a/arch/ia64/configs/generic_defconfig b/arch/ia64/configs/generic_defconfig index 1d7bca0a396..0e5cd1405e0 100644 --- a/arch/ia64/configs/generic_defconfig +++ b/arch/ia64/configs/generic_defconfig | |||
| @@ -234,3 +234,4 @@ CONFIG_CRYPTO_MD5=y | |||
| 234 | # CONFIG_CRYPTO_ANSI_CPRNG is not set | 234 | # CONFIG_CRYPTO_ANSI_CPRNG is not set |
| 235 | CONFIG_CRC_T10DIF=y | 235 | CONFIG_CRC_T10DIF=y |
| 236 | CONFIG_MISC_DEVICES=y | 236 | CONFIG_MISC_DEVICES=y |
| 237 | CONFIG_DMAR=y | ||
