From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751221AbdH1Jt2 (ORCPT ); Mon, 28 Aug 2017 05:49:28 -0400 Received: from mx2.suse.de ([195.135.220.15]:44612 "EHLO mx1.suse.de" rhost-flags-OK-OK-OK-FAIL) by vger.kernel.org with ESMTP id S1750866AbdH1Jt1 (ORCPT ); Mon, 28 Aug 2017 05:49:27 -0400 From: Hannes Reinecke To: x86@kernel.org Cc: Boris Petkov , Linux Kernel Mailinglist , Hannes Reinecke , Hannes Reinecke Subject: [PATCH] x86/Kconfig: compile 32bit drivers for COMPILE_TEST Date: Mon, 28 Aug 2017 11:49:21 +0200 Message-Id: <1503913761-60996-1-git-send-email-hare@suse.de> X-Mailer: git-send-email 1.8.5.6 Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org When COMPILE_TEST is set we should be compiling 32-bit only drivers and features (like ISA support etc), too. After all, it's a compile test. Signed-off-by: Hannes Reinecke --- arch/x86/Kconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arch/x86/Kconfig b/arch/x86/Kconfig index 781521b7cf9e..df61bc37b1a2 100644 --- a/arch/x86/Kconfig +++ b/arch/x86/Kconfig @@ -2548,7 +2548,7 @@ config ISA_DMA_API Enables ISA-style DMA support for devices requiring such controllers. If unsure, say Y. -if X86_32 +if X86_32 || COMPILE_TEST config ISA bool "ISA support" -- 2.12.3