Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1754115Ab3I0QvJ (ORCPT ); Fri, 27 Sep 2013 12:51:09 -0400 Received: from mga14.intel.com ([143.182.124.37]:15217 "EHLO mga14.intel.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1753356Ab3I0QvF (ORCPT ); Fri, 27 Sep 2013 12:51:05 -0400 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="4.90,994,1371106800"; d="scan'208";a="300200547" From: Sudeep Dutt To: Greg Kroah-Hartman , Arnd Bergmann , Joe Perches , linux-kernel@vger.kernel.org, linux-doc@vger.kernel.org, Fengguang Wu , Stephen Rothwell Cc: Nikhil Rao , Ashutosh Dixit , Dasaratharaman Chandramouli , Harshavardhan R Kharche , "Yaozu (Eddie) Dong" , Peter P Waskiewicz Jr , Sudeep Dutt Subject: [PATCH char-misc-next 5/5] misc: mic: depend on X86 for both host and card drivers. Date: Fri, 27 Sep 2013 09:50:16 -0700 Message-Id: X-Mailer: git-send-email 1.8.2.1 In-Reply-To: References: Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1690 Lines: 48 This fixes build failures seen on certain non X86 architectures. The card driver should correctly always depend on X86. The host driver can potentially work on non X86 architectures although it has never been built or validated in such configurations. The host driver dependency on X86 can be removed at some point in the future but this workaround is required for now. Reported-by: Fengguang Wu Reported-by: Stephen Rothwell Signed-off-by: Ashutosh Dixit Signed-off-by: Dasaratharaman Chandramouli Signed-off-by: Nikhil Rao Signed-off-by: Harshavardhan R Kharche Signed-off-by: Sudeep Dutt --- drivers/misc/mic/Kconfig | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/drivers/misc/mic/Kconfig b/drivers/misc/mic/Kconfig index d453768..e42b331 100644 --- a/drivers/misc/mic/Kconfig +++ b/drivers/misc/mic/Kconfig @@ -2,7 +2,7 @@ comment "Intel MIC Host Driver" config INTEL_MIC_HOST tristate "Intel MIC Host Driver" - depends on 64BIT && PCI + depends on 64BIT && PCI && X86 select VHOST_RING default N help @@ -23,7 +23,7 @@ comment "Intel MIC Card Driver" config INTEL_MIC_CARD tristate "Intel MIC Card Driver" - depends on 64BIT + depends on 64BIT && X86 select VIRTIO default N help -- 1.8.2.1 -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/