From patchwork Wed Sep 22 11:50:02 2010 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: x0130808@ti.com X-Patchwork-Id: 198872 Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by demeter1.kernel.org (8.14.4/8.14.3) with ESMTP id o8MAeB3i001154 for ; Wed, 22 Sep 2010 10:40:12 GMT Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1754277Ab0IVKjN (ORCPT ); Wed, 22 Sep 2010 06:39:13 -0400 Received: from arroyo.ext.ti.com ([192.94.94.40]:42807 "EHLO arroyo.ext.ti.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1754247Ab0IVKjL (ORCPT ); Wed, 22 Sep 2010 06:39:11 -0400 Received: from dlep34.itg.ti.com ([157.170.170.115]) by arroyo.ext.ti.com (8.13.7/8.13.7) with ESMTP id o8MAdBaH010393 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO) for ; Wed, 22 Sep 2010 05:39:11 -0500 Received: from localhost.localdomain (localhost [127.0.0.1]) by dlep34.itg.ti.com (8.13.7/8.13.7) with ESMTP id o8MAd6Jx019678; Wed, 22 Sep 2010 05:39:09 -0500 (CDT) From: x0130808@ti.com To: linux-media@vger.kernel.org Cc: Raja Mani , Pramodh AG , Manjunatha Halli Subject: [RFC/PATCH 9/9] Staging:ti-st: Update Kconfig and Makefile for Date: Wed, 22 Sep 2010 07:50:02 -0400 Message-Id: <1285156202-28569-10-git-send-email-x0130808@ti.com> X-Mailer: git-send-email 1.6.5 In-Reply-To: <1285156202-28569-9-git-send-email-x0130808@ti.com> References: <1285156202-28569-1-git-send-email-x0130808@ti.com> <1285156202-28569-2-git-send-email-x0130808@ti.com> <1285156202-28569-3-git-send-email-x0130808@ti.com> <1285156202-28569-4-git-send-email-x0130808@ti.com> <1285156202-28569-5-git-send-email-x0130808@ti.com> <1285156202-28569-6-git-send-email-x0130808@ti.com> <1285156202-28569-7-git-send-email-x0130808@ti.com> <1285156202-28569-8-git-send-email-x0130808@ti.com> <1285156202-28569-9-git-send-email-x0130808@ti.com> Sender: linux-media-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-media@vger.kernel.org X-Greylist: IP, sender and recipient auto-whitelisted, not delayed by milter-greylist-4.2.3 (demeter1.kernel.org [140.211.167.41]); Wed, 22 Sep 2010 10:40:12 +0000 (UTC) diff --git a/drivers/staging/ti-st/Kconfig b/drivers/staging/ti-st/Kconfig index 1b264a3..7e48749 100644 --- a/drivers/staging/ti-st/Kconfig +++ b/drivers/staging/ti-st/Kconfig @@ -23,4 +23,12 @@ config ST_BT This makes use of shared transport line discipline core driver to communicate with the BT core of the combo chip. +config ST_FM + tristate "fm driver for ST" + depends on VIDEO_DEV + select TI_ST + help + This enables the FM driver for TI BT/FM/GPS combo devices + This makes use of shared transport line discipline core driver to + communicate with the FM core of the combo chip. endmenu diff --git a/drivers/staging/ti-st/Makefile b/drivers/staging/ti-st/Makefile index 0167d1d..bd29c83 100644 --- a/drivers/staging/ti-st/Makefile +++ b/drivers/staging/ti-st/Makefile @@ -5,3 +5,5 @@ obj-$(CONFIG_TI_ST) += st_drv.o st_drv-objs := st_core.o st_kim.o st_ll.o obj-$(CONFIG_ST_BT) += bt_drv.o +obj-$(CONFIG_ST_FM) += fm_drv.o +fm_drv-objs := fmdrv_common.o fmdrv_rx.o fmdrv_tx.o fmdrv_v4l2.o