From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from 82-70-136-246.dsl.in-addr.zen.co.uk ([82.70.136.246]:38272 "EHLO rainbowdash.ducie.codethink.co.uk" rhost-flags-OK-OK-OK-FAIL) by vger.kernel.org with ESMTP id S1753152AbcFQPFT (ORCPT ); Fri, 17 Jun 2016 11:05:19 -0400 From: Ben Dooks To: linux-kernel@lists.codethink.co.uk Cc: Ben Dooks , Bjorn Helgaas , linux-pci@vger.kernel.org, linux-kernel@vger.kernel.org, linux-arm-kernel@lists.infradead.org Subject: [PATCH 9/9] [RFC] pci: include for isa_dma_bridge_buggy Date: Fri, 17 Jun 2016 16:05:13 +0100 Message-Id: <1466175913-19067-10-git-send-email-ben.dooks@codethink.co.uk> In-Reply-To: <1466175913-19067-1-git-send-email-ben.dooks@codethink.co.uk> References: <1466175913-19067-1-git-send-email-ben.dooks@codethink.co.uk> Sender: linux-pci-owner@vger.kernel.org List-ID: At least on arm, does not get included when building drivers/pci/pci.o. This causes the following build warning which can be fixed by including : drivers/pci/pci.c:37:5: warning: symbol 'isa_dma_bridge_buggy' was not declared. Should it be static? Signed-off-by: Ben Dooks --- Cc: Bjorn Helgaas Cc: linux-pci@vger.kernel.org Cc: linux-kernel@vger.kernel.org Cc: linux-arm-kernel@lists.infradead.org --- drivers/pci/pci.c | 1 + 1 file changed, 1 insertion(+) diff --git a/drivers/pci/pci.c b/drivers/pci/pci.c index 9add285..86b538d 100644 --- a/drivers/pci/pci.c +++ b/drivers/pci/pci.c @@ -26,6 +26,7 @@ #include #include #include +#include #include #include "pci.h" -- 2.8.1