From patchwork Mon Nov 29 14:18:42 2010 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: manjunatha_halli@ti.com X-Patchwork-Id: 364012 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 oATDCAUX011208 for ; Mon, 29 Nov 2010 13:12:12 GMT Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1754015Ab0K2NLU (ORCPT ); Mon, 29 Nov 2010 08:11:20 -0500 Received: from bear.ext.ti.com ([192.94.94.41]:34999 "EHLO bear.ext.ti.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1754101Ab0K2NKi (ORCPT ); Mon, 29 Nov 2010 08:10:38 -0500 Received: from dlep36.itg.ti.com ([157.170.170.91]) by bear.ext.ti.com (8.13.7/8.13.7) with ESMTP id oATDAZGb008477 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Mon, 29 Nov 2010 07:10:35 -0600 Received: from localhost.localdomain (localhost [127.0.0.1]) by dlep36.itg.ti.com (8.13.8/8.13.8) with ESMTP id oATDA3xf013686; Mon, 29 Nov 2010 07:10:33 -0600 (CST) From: manjunatha_halli@ti.com To: mchehab@infradead.org, hverkuil@xs4all.nl Cc: linux-kernel@vger.kernel.org, linux-media@vger.kernel.org, Manjunatha Halli Subject: [RFC v5 8/9] drivers:staging: ti-st: Kconfig & Makefile change Date: Mon, 29 Nov 2010 09:18:42 -0500 Message-Id: <1291040323-2641-9-git-send-email-manjunatha_halli@ti.com> X-Mailer: git-send-email 1.6.5 In-Reply-To: <1291040323-2641-8-git-send-email-manjunatha_halli@ti.com> References: <1291040323-2641-1-git-send-email-manjunatha_halli@ti.com> <1291040323-2641-2-git-send-email-manjunatha_halli@ti.com> <1291040323-2641-3-git-send-email-manjunatha_halli@ti.com> <1291040323-2641-4-git-send-email-manjunatha_halli@ti.com> <1291040323-2641-5-git-send-email-manjunatha_halli@ti.com> <1291040323-2641-6-git-send-email-manjunatha_halli@ti.com> <1291040323-2641-7-git-send-email-manjunatha_halli@ti.com> <1291040323-2641-8-git-send-email-manjunatha_halli@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]); Mon, 29 Nov 2010 13:12:12 +0000 (UTC) diff --git a/drivers/staging/ti-st/Kconfig b/drivers/staging/ti-st/Kconfig index 074b8e8..43b6dea 100644 --- a/drivers/staging/ti-st/Kconfig +++ b/drivers/staging/ti-st/Kconfig @@ -11,4 +11,14 @@ 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" + depends on VIDEO_DEV && RFKILL + 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 5f11b82..330f95b 100644 --- a/drivers/staging/ti-st/Makefile +++ b/drivers/staging/ti-st/Makefile @@ -3,3 +3,5 @@ # and its protocol drivers (BT, FM, GPS) # 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