From mboxrd@z Thu Jan 1 00:00:00 1970 From: Randy Dunlap Subject: [PATCH -next] pch_can: depends on PCI Date: Mon, 25 Oct 2010 16:25:24 -0700 Message-ID: <20101025162524.570fc82a.randy.dunlap@oracle.com> References: <20101025145834.9b68e026.sfr@canb.auug.org.au> Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Cc: linux-next@vger.kernel.org, LKML , akpm , davem@davemloft.net To: Stephen Rothwell , netdev Return-path: In-Reply-To: <20101025145834.9b68e026.sfr@canb.auug.org.au> Sender: linux-kernel-owner@vger.kernel.org List-Id: netdev.vger.kernel.org From: Randy Dunlap Fix pch_can build when CONFIG_PCI is not enabled. It uses pci interfaces and data structures, so it should depend on PCI. drivers/net/can/pch_can.c:1044: error: implicit declaration of function 'pci_enable_msi' drivers/net/can/pch_can.c:1079: error: implicit declaration of function 'pci_disable_msi' Signed-off-by: Randy Dunlap --- drivers/net/can/Kconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- linux-next-20101025.orig/drivers/net/can/Kconfig +++ linux-next-20101025/drivers/net/can/Kconfig @@ -84,7 +84,7 @@ config CAN_FLEXCAN config PCH_CAN tristate "PCH CAN" - depends on CAN_DEV + depends on CAN_DEV && PCI ---help--- This driver is for PCH CAN of Topcliff which is an IOH for x86 embedded processor.