Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1754969AbbLFWJY (ORCPT ); Sun, 6 Dec 2015 17:09:24 -0500 Received: from mxf4.bahnhof.se ([213.80.101.28]:59147 "EHLO mxf4.bahnhof.se" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1754593AbbLFWJW (ORCPT ); Sun, 6 Dec 2015 17:09:22 -0500 X-Spam-Score: 0 From: Niklas Cassel To: starvik@axis.com, jesper.nilsson@axis.com Cc: linux-cris-kernel@axis.com, linux-kernel@vger.kernel.org, Niklas Cassel Subject: [PATCH 3/4] cris: fix Kconfig mismatch when building with CONFIG_PCI Date: Sun, 6 Dec 2015 23:08:53 +0100 Message-Id: <1449439734-25585-3-git-send-email-nks@flawful.org> X-Mailer: git-send-email 2.5.0 In-Reply-To: <1449439734-25585-1-git-send-email-nks@flawful.org> References: <1449439734-25585-1-git-send-email-nks@flawful.org> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1018 Lines: 34 I/O port access. Normally there is no I/O space on CRIS but when Cardbus/PCI is enabled the request is passed through the bridge. lib/pci_iomap.c: In function ‘pci_iomap_range’: lib/pci_iomap.c:43:3: error: implicit declaration of function ‘ioport_map’ [-Werror=implicit-function-declaration] return __pci_ioport_map(dev, start, len); ^ Signed-off-by: Niklas Cassel --- arch/cris/Kconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arch/cris/Kconfig b/arch/cris/Kconfig index e086f9e..69622ba 100644 --- a/arch/cris/Kconfig +++ b/arch/cris/Kconfig @@ -30,7 +30,7 @@ config GENERIC_CALIBRATE_DELAY default y config NO_IOPORT_MAP - def_bool y + def_bool y if !PCI config FORCE_MAX_ZONEORDER int -- 2.5.0 -- 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/