From patchwork Mon Jul 24 00:39:37 2017 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Guenter Roeck X-Patchwork-Id: 9858681 X-Patchwork-Delegate: bhelgaas@google.com Return-Path: Received: from mail.wl.linuxfoundation.org (pdx-wl-mail.web.codeaurora.org [172.30.200.125]) by pdx-korg-patchwork.web.codeaurora.org (Postfix) with ESMTP id E50C060349 for ; Mon, 24 Jul 2017 00:39:59 +0000 (UTC) Received: from mail.wl.linuxfoundation.org (localhost [127.0.0.1]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id D5B0F28516 for ; Mon, 24 Jul 2017 00:39:59 +0000 (UTC) Received: by mail.wl.linuxfoundation.org (Postfix, from userid 486) id C70E628503; Mon, 24 Jul 2017 00:39:59 +0000 (UTC) X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on pdx-wl-mail.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-6.8 required=2.0 tests=BAYES_00,DKIM_SIGNED, RCVD_IN_DNSWL_HI,T_DKIM_INVALID autolearn=ham version=3.3.1 Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id 2B5F028503 for ; Mon, 24 Jul 2017 00:39:59 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751891AbdGXAju (ORCPT ); Sun, 23 Jul 2017 20:39:50 -0400 Received: from bh-25.webhostbox.net ([208.91.199.152]:37003 "EHLO bh-25.webhostbox.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751646AbdGXAju (ORCPT ); Sun, 23 Jul 2017 20:39:50 -0400 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=roeck-us.net; s=default; h=Message-Id:Date:Subject:Cc:To:From:Sender: Reply-To:MIME-Version:Content-Type:Content-Transfer-Encoding:Content-ID: Content-Description:Resent-Date:Resent-From:Resent-Sender:Resent-To:Resent-Cc :Resent-Message-ID:In-Reply-To:References:List-Id:List-Help:List-Unsubscribe: List-Subscribe:List-Post:List-Owner:List-Archive; bh=aGgZ3rJpo1JcWaB9MVBtMyXUzfe0HA6y0u0yo+2KVeg=; b=o0FFS0Ksd7oSY+0WWoPea9c8nT bFlO8dUDgizulrAfpo7dMwcvobByxwccLcfc/9RkPdcTtnJUmvymQkU9PtN16Z4E9CqZ4XkBWNeIg 0JflFPyaJb7G8jL8ZI2/KbOtsWc5VSOCDleDKq86LbIteFYzaCg7PvbUYOwhGOQzQvnIOtl2wD5oi QuuU/m+bZBFexZ/VNJU0duSPkZthTI3PB1zHPaM9HbYrNqGBipWHxKBfUKpdcSecKj6ksI6oBYXdn TauteXuhy4AJnZbHE0jxdU7hXmRgA+5VjWUjzBm/j0Ngnq1EDYtaFrk87c8Jkf1eO2+hcTGeJwKQN ScpsumSQ==; Received: from 108-223-40-66.lightspeed.sntcca.sbcglobal.net ([108.223.40.66]:34248 helo=localhost) by bh-25.webhostbox.net with esmtpsa (TLSv1.2:ECDHE-RSA-AES128-GCM-SHA256:128) (Exim 4.89) (envelope-from ) id 1dZRPY-001Qe4-91; Mon, 24 Jul 2017 00:39:48 +0000 From: Guenter Roeck To: Bjorn Helgaas Cc: linux-pci@vger.kernel.org, linux-kernel@vger.kernel.org, Michal Simek , =?UTF-8?q?S=C3=B6ren=20Brinkmann?= , Guenter Roeck , Paul Burton , James Hogan Subject: [PATCH] PCI: xilinx: Remove platform/architecture restrictions Date: Sun, 23 Jul 2017 17:39:37 -0700 Message-Id: <1500856777-23383-1-git-send-email-linux@roeck-us.net> X-Mailer: git-send-email 2.7.4 X-Authenticated_sender: guenter@roeck-us.net X-OutGoing-Spam-Status: No, score=-1.0 X-AntiAbuse: This header was added to track abuse, please include it with any abuse report X-AntiAbuse: Primary Hostname - bh-25.webhostbox.net X-AntiAbuse: Original Domain - vger.kernel.org X-AntiAbuse: Originator/Caller UID/GID - [47 12] / [47 12] X-AntiAbuse: Sender Address Domain - roeck-us.net X-Get-Message-Sender-Via: bh-25.webhostbox.net: authenticated_id: guenter@roeck-us.net X-Authenticated-Sender: bh-25.webhostbox.net: guenter@roeck-us.net X-Source: X-Source-Args: X-Source-Dir: Sender: linux-pci-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-pci@vger.kernel.org X-Virus-Scanned: ClamAV using ClamSMTP The MIPS Boston board configuration tries to enable CONFIG_PCIE_XILINX. That doesn't work since PCIE_XILINX depends on ARCH_ZYNQ || MICROBLAZE. Remove that restriction. Cc: Paul Burton Cc: James Hogan Signed-off-by: Guenter Roeck --- drivers/pci/host/Kconfig | 1 - 1 file changed, 1 deletion(-) diff --git a/drivers/pci/host/Kconfig b/drivers/pci/host/Kconfig index 89d61c2cbfaa..ed905a5401c3 100644 --- a/drivers/pci/host/Kconfig +++ b/drivers/pci/host/Kconfig @@ -71,7 +71,6 @@ config PCI_HOST_GENERIC config PCIE_XILINX bool "Xilinx AXI PCIe host bridge support" - depends on ARCH_ZYNQ || MICROBLAZE help Say 'Y' here if you want kernel to support the Xilinx AXI PCIe Host Bridge driver.