From patchwork Sun Feb 27 17:51:54 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Randy Dunlap X-Patchwork-Id: 5960 Return-path: Envelope-to: mchehab@pedra Delivery-date: Sun, 27 Feb 2011 14:53:41 -0300 Received: from mchehab by pedra with local (Exim 4.72) (envelope-from ) id 1PtkoO-00056m-GA for mchehab@pedra; Sun, 27 Feb 2011 14:53:40 -0300 Received: from casper.infradead.org [85.118.1.10] by pedra with IMAP (fetchmail-6.3.17) for (single-drop); Sun, 27 Feb 2011 14:53:40 -0300 (BRT) Received: from vger.kernel.org ([209.132.180.67]) by casper.infradead.org with esmtp (Exim 4.72 #1 (Red Hat Linux)) id 1PtknG-0006XJ-Tp; Sun, 27 Feb 2011 17:52:31 +0000 Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751960Ab1B0RwS (ORCPT + 1 other); Sun, 27 Feb 2011 12:52:18 -0500 Received: from rcsinet10.oracle.com ([148.87.113.121]:52075 "EHLO rcsinet10.oracle.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751402Ab1B0RwR (ORCPT ); Sun, 27 Feb 2011 12:52:17 -0500 Received: from acsinet15.oracle.com (acsinet15.oracle.com [141.146.126.227]) by rcsinet10.oracle.com (Switch-3.4.2/Switch-3.4.2) with ESMTP id p1RHq4bR005233 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK); Sun, 27 Feb 2011 17:52:06 GMT Received: from acsmt353.oracle.com (acsmt353.oracle.com [141.146.40.153]) by acsinet15.oracle.com (Switch-3.4.2/Switch-3.4.1) with ESMTP id p1RH5NaV019986; Sun, 27 Feb 2011 17:52:04 GMT Received: from abhmt015.oracle.com by acsmt353.oracle.com with ESMTP id 1090406781298829117; Sun, 27 Feb 2011 09:51:57 -0800 Received: from chimera.site (/173.50.240.230) by default (Oracle Beehive Gateway v4.0) with ESMTP ; Sun, 27 Feb 2011 09:51:56 -0800 Date: Sun, 27 Feb 2011 09:51:54 -0800 From: Randy Dunlap To: linux-media@vger.kernel.org, lkml Cc: Mauro , Matti Aaltonen Subject: [PATCH] media/radio/wl1273: fix build errors Message-Id: <20110227095154.2741d051.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 X-Source-IP: acsmt353.oracle.com [141.146.40.153] X-Auth-Type: Internal IP X-CT-RefId: str=0001.0A090209.4D6A8F44.00B6:SCFMA4539814,ss=1,fgs=0 Precedence: bulk List-ID: X-Mailing-List: linux-media@vger.kernel.org Sender: From: Randy Dunlap RADIO_WL1273 needs to make sure that the mfd core is built to avoid build errors: ERROR: "mfd_add_devices" [drivers/mfd/wl1273-core.ko] undefined! ERROR: "mfd_remove_devices" [drivers/mfd/wl1273-core.ko] undefined! Signed-off-by: Randy Dunlap Cc: Matti Aaltonen --- (also needed in mainline) drivers/media/radio/Kconfig | 1 + 1 file changed, 1 insertion(+) -- 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-20110223.orig/drivers/media/radio/Kconfig +++ linux-next-20110223/drivers/media/radio/Kconfig @@ -441,6 +441,7 @@ config RADIO_TIMBERDALE config RADIO_WL1273 tristate "Texas Instruments WL1273 I2C FM Radio" depends on I2C && VIDEO_V4L2 + select MFD_CORE select MFD_WL1273_CORE select FW_LOADER ---help---