From patchwork Mon Mar 1 07:38:32 2021 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Patchwork-Submitter: Christoph Hellwig X-Patchwork-Id: 12108863 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-16.8 required=3.0 tests=BAYES_00,DKIM_SIGNED, DKIM_VALID,HEADER_FROM_DIFFERENT_DOMAINS,INCLUDES_CR_TRAILER,INCLUDES_PATCH, MAILING_LIST_MULTI,SPF_HELO_NONE,SPF_PASS,USER_AGENT_GIT autolearn=ham autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 7D090C433E0 for ; Mon, 1 Mar 2021 07:40:59 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id 3210B64E38 for ; Mon, 1 Mar 2021 07:40:59 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S232496AbhCAHja (ORCPT ); Mon, 1 Mar 2021 02:39:30 -0500 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:35982 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S232536AbhCAHj1 (ORCPT ); Mon, 1 Mar 2021 02:39:27 -0500 Received: from casper.infradead.org (casper.infradead.org [IPv6:2001:8b0:10b:1236::1]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id CCAC2C06178A for ; Sun, 28 Feb 2021 23:39:25 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=infradead.org; s=casper.20170209; h=Content-Transfer-Encoding:Content-Type: MIME-Version:References:In-Reply-To:Message-Id:Date:Subject:Cc:To:From:Sender :Reply-To:Content-ID:Content-Description; bh=TIlQScCirKLzWtGrSlnd+vSkhgPzbDqx+0oHlZOJRBs=; b=dbbntP2CiuV9lLXAW8Ss14wwgq UlXYZclZ4e7lsUeWMJV1ybOmK8rXGjKcFA9tJ4RtgtYvctSYKb/OopKpOlcsM3q1pMSGeT7pozKp4 3FlLJJNfwAzeewJczEco5eh5m4Hyy524r9FgeYHtkO9MkugAIQP1HrzQnzcNDBVt2U4cEl8NvRYqO plvzXEM/nYEjrKwea0xhHhXFb5jFyOyWV3HeBXf5ZmyVzoVVJ81ZiBQFORK0Q8UNRV+pKRsuktfRz 4HOfO9dt9Z0GpWCK/KslR1ouC/XYutUf7bDqRq7JkpcnAN8lDYdVFn8uJG4n/MKRLmNwjTvuxX6rK +/Lghifw==; Received: from [2001:4bb8:19b:e4b7:cdf9:733f:4874:8eb4] (helo=localhost) by casper.infradead.org with esmtpsa (Exim 4.94 #2 (Red Hat Linux)) id 1lGd8z-00FQm0-FD; Mon, 01 Mar 2021 07:39:11 +0000 From: Christoph Hellwig To: Thomas Bogendoerfer Cc: Florian Fainelli , linux-mips@vger.kernel.org, bcm-kernel-feedback-list@broadcom.com Subject: [PATCH 3/3] MIPS: force CONFIG_PCI to on for IP27 and IP30 Date: Mon, 1 Mar 2021 08:38:32 +0100 Message-Id: <20210301073832.919371-4-hch@lst.de> X-Mailer: git-send-email 2.29.2 In-Reply-To: <20210301073832.919371-1-hch@lst.de> References: <20210301073832.919371-1-hch@lst.de> MIME-Version: 1.0 X-SRS-Rewrite: SMTP reverse-path rewritten from by casper.infradead.org. See http://www.infradead.org/rpr.html Precedence: bulk List-ID: X-Mailing-List: linux-mips@vger.kernel.org These are PCI based systems, so not enabling the support is rather pointless. Additionally the random configѕ generated by the build bot for IP27 and IP30 builds without PCI fail to buіld. Signed-off-by: Christoph Hellwig --- arch/mips/Kconfig | 2 ++ 1 file changed, 2 insertions(+) diff --git a/arch/mips/Kconfig b/arch/mips/Kconfig index d89efba3d8a44a..cc7494e988e2fa 100644 --- a/arch/mips/Kconfig +++ b/arch/mips/Kconfig @@ -712,6 +712,7 @@ config SGI_IP27 select ARC_CMDLINE_ONLY select BOOT_ELF64 select DEFAULT_SGI_PARTITION + select FORCE_PCI select SYS_HAS_EARLY_PRINTK select HAVE_PCI select IRQ_MIPS_CPU @@ -774,6 +775,7 @@ config SGI_IP30 select BOOT_ELF64 select CEVT_R4K select CSRC_R4K + select FORCE_PCI select SYNC_R4K if SMP select ZONE_DMA32 select HAVE_PCI