Received: by 2002:ac0:a5a7:0:0:0:0:0 with SMTP id m36-v6csp5225272imm; Tue, 31 Jul 2018 07:31:27 -0700 (PDT) X-Google-Smtp-Source: AAOMgpcP6Azvhtob8DmXk8MJKd8Ij6qDLk9JLLGAQSQrOU+x8Lq5MAmjuSO9mcdQi6scDu9kkXQL X-Received: by 2002:a62:9683:: with SMTP id s3-v6mr22550687pfk.191.1533047486947; Tue, 31 Jul 2018 07:31:26 -0700 (PDT) ARC-Seal: i=1; a=rsa-sha256; t=1533047486; cv=none; d=google.com; s=arc-20160816; b=sxPa9mvhUWRb5n377IpwcgkJmHQdZOkLBOqP94EjFUzmtX0BYa52qTvGY5qRxX6gJa xjF8nlwNMqKjpukONl8lcrXRAwQqXy6MHq46eyqvILpnWaA6Gt14apvDFy85Cmx+4NkM OAbXZnuA4JqzvIFtS30Unfwf8bcFuy0zW1C0NAJRLayMNDY3QD5uc0DmMz8AIHxYAebQ PzR4AXkrEoq1BZSwwVAXQCUnLoYR3mVLt0zCLHaKUfXV207z3lNaUm2T9DBzLdnwN8gm fD3O1CWa+kwi0lqPbwWAGMWpnvIC3FrgPm5LF2TdG9nA43ZLFdhXKmE+wrLWiQf63lAH +BMQ== ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; h=list-id:precedence:sender:references:in-reply-to:message-id:date :subject:cc:to:from:arc-authentication-results; bh=hmZswjQVb9SWIhZrO2Ot0N6na55SZ1Wowc7xhX6xarg=; b=jd22ovuqgGigdFjGNECSbrysH2bbKQaFm3mlnmd+RCqinm6UEPC8kAwCvSbUz2wER+ EL+gfRfUBwhz7ZQpwgI1u2yIxwtPUOZnloZyGo+ZL8SW10X5vAbU7wmmELBN9C7ynBBS NdJhmJRG0cYF79Adt5U19r9AsPpd8McKoUU0kfDbmsvt3xpLlupBm0k5u4m+J+rEZhE8 zmEeBzK5DDgLUZcVhCti2RooN1mErIKpLJPMvCQ+sQhAJHMUtPHH6EUzmOexl35rMQ6C blPxz9nVLZUz7snG6XKauPGxAq1Ft0InkPjnvL5et/PLvEVmJHA6Vmez1Ir9I2+31htj 1iVQ== ARC-Authentication-Results: i=1; mx.google.com; spf=pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Return-Path: Received: from vger.kernel.org (vger.kernel.org. [209.132.180.67]) by mx.google.com with ESMTP id s10-v6si11856596pgm.501.2018.07.31.07.31.12; Tue, 31 Jul 2018 07:31:26 -0700 (PDT) Received-SPF: pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) client-ip=209.132.180.67; Authentication-Results: mx.google.com; spf=pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1732521AbeGaQKw (ORCPT + 99 others); Tue, 31 Jul 2018 12:10:52 -0400 Received: from mail-d.ads.isi.edu ([128.9.180.199]:62437 "EHLO mail-d.ads.isi.edu" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1732266AbeGaQKw (ORCPT ); Tue, 31 Jul 2018 12:10:52 -0400 X-IronPort-AV: E=Sophos;i="5.51,427,1526367600"; d="scan'208";a="2634428" Received: from guest228.east.isi.edu (HELO localhost) ([65.123.202.228]) by mail-d.ads.isi.edu with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 31 Jul 2018 07:30:16 -0700 From: Alexei Colin To: Alexandre Bounine , Catalin Marinas , Will Deacon Cc: Alexei Colin , Andrew Morton , Russell King , John Paul Walters , x86@kernel.org, linuxppc-dev@lists.ozlabs.org, linux-mips@linux-mips.org, linux-arm-kernel@lists.infradead.org, linux-kernel@vger.kernel.org Subject: [RESEND PATCH 6/6] arm64: enable RapidIO menu in Kconfig Date: Tue, 31 Jul 2018 10:29:54 -0400 Message-Id: <20180731142954.30345-7-acolin@isi.edu> X-Mailer: git-send-email 2.18.0 In-Reply-To: <20180731142954.30345-1-acolin@isi.edu> References: <20180731142954.30345-1-acolin@isi.edu> Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Platforms with a PCI bus will be offered the RapidIO menu since they may be want support for a RapidIO PCI device. Platforms without a PCI bus that might include a RapidIO IP block will need to "select HAS_RAPIDIO" in the platform-/machine-specific "config ARCH_*" Kconfig entry. Tested that kernel builds for arm64 with RapidIO subsystem and switch drivers enabled, also that the modules load successfully on a custom Aarch64 Qemu model. Cc: Andrew Morton Cc: Russell King Cc: John Paul Walters Cc: x86@kernel.org Cc: linuxppc-dev@lists.ozlabs.org Cc: linux-mips@linux-mips.org Cc: linux-arm-kernel@lists.infradead.org Cc: linux-kernel@vger.kernel.org, Signed-off-by: Alexei Colin --- arch/arm64/Kconfig | 2 ++ 1 file changed, 2 insertions(+) diff --git a/arch/arm64/Kconfig b/arch/arm64/Kconfig index a8f0c74e6f7f..5e8cf90505ec 100644 --- a/arch/arm64/Kconfig +++ b/arch/arm64/Kconfig @@ -308,6 +308,8 @@ config PCI_SYSCALL source "drivers/pci/Kconfig" +source "drivers/rapidio/Kconfig" + endmenu menu "Kernel Features" -- 2.18.0