From patchwork Mon Aug 10 23:04:55 2009 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Randy Dunlap X-Patchwork-Id: 1480 Return-path: Envelope-to: mchehab@infradead.org Delivery-date: Mon, 10 Aug 2009 23:07:36 +0000 Received: from bombadil.infradead.org [18.85.46.34] by pedra.chehab.org with IMAP (fetchmail-6.3.6) for (single-drop); Mon, 10 Aug 2009 20:17:05 -0300 (BRT) Received: from vger.kernel.org ([209.132.176.167]) by bombadil.infradead.org with esmtp (Exim 4.69 #1 (Red Hat Linux)) id 1Madxo-0002pM-59; Mon, 10 Aug 2009 23:07:36 +0000 Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1754104AbZHJXHS (ORCPT + 1 other); Mon, 10 Aug 2009 19:07:18 -0400 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1754040AbZHJXHS (ORCPT ); Mon, 10 Aug 2009 19:07:18 -0400 Received: from rcsinet12.oracle.com ([148.87.113.124]:64714 "EHLO rgminet12.oracle.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751797AbZHJXHQ (ORCPT ); Mon, 10 Aug 2009 19:07:16 -0400 Received: from rgminet15.oracle.com (rcsinet15.oracle.com [148.87.113.117]) by rgminet12.oracle.com (Switch-3.3.1/Switch-3.3.1) with ESMTP id n7AN5htx012629 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK); Mon, 10 Aug 2009 23:05:44 GMT Received: from abhmt004.oracle.com (abhmt004.oracle.com [141.146.116.13]) by rgminet15.oracle.com (Switch-3.3.1/Switch-3.3.1) with ESMTP id n7AN5kMc024747; Mon, 10 Aug 2009 23:05:46 GMT Received: from chimera.site (/96.253.169.185) by default (Oracle Beehive Gateway v4.0) with ESMTP ; Mon, 10 Aug 2009 16:05:43 -0700 Date: Mon, 10 Aug 2009 16:04:55 -0700 From: Randy Dunlap To: Stephen Rothwell , linux-media@vger.kernel.org, akpm Cc: linux-next@vger.kernel.org, LKML , Michael Krufky , Uri Shkolnik Subject: [PATCH -next] dvb: siano uses/depends on INPUT Message-Id: <20090810160455.4f93ad60.randy.dunlap@oracle.com> In-Reply-To: <20090810203508.f3258129.sfr@canb.auug.org.au> References: <20090810203508.f3258129.sfr@canb.auug.org.au> Organization: Oracle Linux Eng. X-Mailer: Sylpheed 2.7.0 (GTK+ 2.12.0; x86_64-unknown-linux-gnu) Mime-Version: 1.0 X-Source-IP: abhmt004.oracle.com [141.146.116.13] X-Auth-Type: Internal IP X-CT-RefId: str=0001.0A010209.4A80A7C9.00C5:SCFSTAT5015188,ss=1,fgs=0 Sender: linux-media-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-media@vger.kernel.org From: Randy Dunlap siano uses input_*() functions so it should depend on INPUT to prevent build errors: ERROR: "input_event" [drivers/media/dvb/siano/sms1xxx.ko] undefined! ERROR: "input_register_device" [drivers/media/dvb/siano/sms1xxx.ko] undefined! ERROR: "input_free_device" [drivers/media/dvb/siano/sms1xxx.ko] undefined! ERROR: "input_unregister_device" [drivers/media/dvb/siano/sms1xxx.ko] undefined! ERROR: "input_allocate_device" [drivers/media/dvb/siano/sms1xxx.ko] undefined! Signed-off-by: Randy Dunlap Cc: Michael Krufky Cc: Uri Shkolnik --- drivers/media/dvb/siano/Kconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- ~Randy LPC 2009, Sept. 23-25, Portland, Oregon http://linuxplumbersconf.org/2009/ -- To unsubscribe from this list: send the line "unsubscribe linux-media" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html --- linux-next-20090810.orig/drivers/media/dvb/siano/Kconfig +++ linux-next-20090810/drivers/media/dvb/siano/Kconfig @@ -4,7 +4,7 @@ config DVB_SIANO_SMS1XXX tristate "Siano SMS1XXX USB dongle support" - depends on DVB_CORE && USB + depends on DVB_CORE && USB && INPUT ---help--- Choose Y here if you have a USB dongle with a SMS1XXX chipset.