From patchwork Fri Aug 13 14:14:43 2010 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: raja_mani@ti.com X-Patchwork-Id: 119442 Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by demeter.kernel.org (8.14.4/8.14.3) with ESMTP id o7DDvte5030521 for ; Fri, 13 Aug 2010 13:57:57 GMT Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S934445Ab0HMN5h (ORCPT ); Fri, 13 Aug 2010 09:57:37 -0400 Received: from arroyo.ext.ti.com ([192.94.94.40]:43382 "EHLO arroyo.ext.ti.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S934396Ab0HMN4Z (ORCPT ); Fri, 13 Aug 2010 09:56:25 -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 o7DDuKqt008845 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Fri, 13 Aug 2010 08:56:20 -0500 Received: from localhost.localdomain (localhost [127.0.0.1]) by dlep34.itg.ti.com (8.13.7/8.13.7) with ESMTP id o7DDuGV9029467; Fri, 13 Aug 2010 08:56:18 -0500 (CDT) From: raja_mani@ti.com To: linux-media@vger.kernel.org, linux-kernel@vger.kernel.org Cc: mchehab@infradead.org, pavan_savoy@sify.com, Raja-Mani , Pramodh AG , Pavan Savoy Subject: [PATCH/RFC 5/6] Staging: ti-st: update Kconfig and Makefile for FM driver Date: Fri, 13 Aug 2010 10:14:43 -0400 Message-Id: <1281708884-15462-6-git-send-email-raja_mani@ti.com> X-Mailer: git-send-email 1.5.6.5 In-Reply-To: <1281708884-15462-5-git-send-email-raja_mani@ti.com> References: <1281708884-15462-1-git-send-email-raja_mani@ti.com> <1281708884-15462-2-git-send-email-raja_mani@ti.com> <1281708884-15462-3-git-send-email-raja_mani@ti.com> <1281708884-15462-4-git-send-email-raja_mani@ti.com> <1281708884-15462-5-git-send-email-raja_mani@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 (demeter.kernel.org [140.211.167.41]); Fri, 13 Aug 2010 13:57:57 +0000 (UTC) diff --git a/drivers/staging/ti-st/Kconfig b/drivers/staging/ti-st/Kconfig index 68ad3d0..4019c15 100644 --- a/drivers/staging/ti-st/Kconfig +++ b/drivers/staging/ti-st/Kconfig @@ -22,4 +22,12 @@ config ST_BT This enables the Bluetooth driver for TI BT/FM/GPS combo devices. 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" + 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..e6af3f1 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_v4l2.o