From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1754451Ab1C1PLX (ORCPT ); Mon, 28 Mar 2011 11:11:23 -0400 Received: from rcsinet10.oracle.com ([148.87.113.121]:57390 "EHLO rcsinet10.oracle.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1753539Ab1C1PLV (ORCPT ); Mon, 28 Mar 2011 11:11:21 -0400 Date: Mon, 28 Mar 2011 08:10:43 -0700 From: Randy Dunlap To: Stephen Rothwell , Baruch Siach , linux-i2c@vger.kernel.org Cc: linux-next@vger.kernel.org, LKML , khali@linux-fr.org, ben-linux@fluff.org Subject: [PATCH -next resend] i2c: designware-pcidrv depends on PCI Message-Id: <20110328081043.0a71e36b.randy.dunlap@oracle.com> Organization: Oracle Linux Eng. X-Mailer: Sylpheed 2.7.1 (GTK+ 2.16.6; x86_64-unknown-linux-gnu) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit X-Source-IP: acsmt357.oracle.com [141.146.40.157] X-Auth-Type: Internal IP X-CT-RefId: str=0001.0A090203.4D90A4FB.001F,ss=1,fgs=0 Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org From: Randy Dunlap i2c-designware-pcidrv is a PCI driver and should depend on PCI. Fixes these build errors: drivers/i2c/busses/i2c-designware-pcidrv.c:256: error: implicit declaration of function 'pci_request_region' drivers/i2c/busses/i2c-designware-pcidrv.c:338: error: implicit declaration of function 'pci_release_region' Signed-off-by: Randy Dunlap Cc: Baruch Siach --- drivers/i2c/busses/Kconfig | 1 + 1 file changed, 1 insertion(+) --- linux-next-20110316.orig/drivers/i2c/busses/Kconfig +++ linux-next-20110316/drivers/i2c/busses/Kconfig @@ -359,6 +359,7 @@ config I2C_DESIGNWARE_PLATFORM config I2C_DESIGNWARE_PCI tristate "Synopsys DesignWare PCI" + depends on PCI help If you say yes to this option, support will be included for the Synopsys DesignWare I2C adapter. Only master mode is supported. --