From patchwork Mon May 11 06:41:19 2009 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: ext-eero.nurkkala@nokia.com X-Patchwork-Id: 22850 X-Patchwork-Delegate: mchehab@redhat.com Received: from vger.kernel.org (vger.kernel.org [209.132.176.167]) by demeter.kernel.org (8.14.2/8.14.2) with ESMTP id n4B6gnwo002939 for ; Mon, 11 May 2009 06:42:50 GMT Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751174AbZEKGmr (ORCPT ); Mon, 11 May 2009 02:42:47 -0400 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1751416AbZEKGmq (ORCPT ); Mon, 11 May 2009 02:42:46 -0400 Received: from smtp.nokia.com ([192.100.122.230]:52722 "EHLO mgw-mx03.nokia.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751174AbZEKGmp (ORCPT ); Mon, 11 May 2009 02:42:45 -0400 Received: from vaebh105.NOE.Nokia.com (vaebh105.europe.nokia.com [10.160.244.31]) by mgw-mx03.nokia.com (Switch-3.2.6/Switch-3.2.6) with ESMTP id n4B6gdHP005187 for ; Mon, 11 May 2009 09:42:41 +0300 Received: from esebh102.NOE.Nokia.com ([172.21.138.183]) by vaebh105.NOE.Nokia.com with Microsoft SMTPSVC(6.0.3790.3959); Mon, 11 May 2009 09:42:38 +0300 Received: from mgw-int02.ntc.nokia.com ([172.21.143.97]) by esebh102.NOE.Nokia.com over TLS secured channel with Microsoft SMTPSVC(6.0.3790.3959); Mon, 11 May 2009 09:42:37 +0300 Received: from localhost.localdomain (ouped118146.nmp.nokia.com [172.23.118.146]) by mgw-int02.ntc.nokia.com (Switch-3.2.5/Switch-3.2.5) with ESMTP id n4B6gX0p011964; Mon, 11 May 2009 09:42:36 +0300 From: ext-eero.nurkkala@nokia.com To: linux-media@vger.kernel.org Cc: Eero Nurkkala Subject: [PATCH 2/2] V4L: Add BCM2048 radio driver Makefile and Kconfig dependencies Date: Mon, 11 May 2009 09:41:19 +0300 Message-Id: <12420240833715-git-send-email-ext-eero.nurkkala@nokia.com> X-Mailer: git-send-email 1.5.2 In-Reply-To: <12420240811376-git-send-email-ext-eero.nurkkala@nokia.com> References: <1242024079959-git-send-email-ext-eero.nurkkala@nokia.com> <12420240811376-git-send-email-ext-eero.nurkkala@nokia.com> X-OriginalArrivalTime: 11 May 2009 06:42:37.0802 (UTC) FILETIME=[AC86CCA0:01C9D203] X-Nokia-AV: Clean Sender: linux-media-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-media@vger.kernel.org From: Eero Nurkkala This adds the Makefile and Kconfig entries for the BCM2048 radio chip. Signed-off-by: Eero Nurkkala --- drivers/media/radio/Kconfig | 10 ++++++++++ drivers/media/radio/Makefile | 1 + 2 files changed, 11 insertions(+), 0 deletions(-) diff --git a/drivers/media/radio/Kconfig b/drivers/media/radio/Kconfig index 3315cac..c4d8a5d 100644 --- a/drivers/media/radio/Kconfig +++ b/drivers/media/radio/Kconfig @@ -387,6 +387,16 @@ config USB_MR800 To compile this driver as a module, choose M here: the module will be called radio-mr800. +config I2C_BCM2048 + tristate "Broadcom BCM2048 FM Radio Receiver support" + depends on I2C && VIDEO_V4L2 + ---help--- + Say Y here if you want support to BCM2048 FM Radio Receiver. + This device driver supports only i2c bus. + + To compile this driver as a module, choose M here: the + module will be called radio-bcm2048. + config RADIO_TEA5764 tristate "TEA5764 I2C FM radio support" depends on I2C && VIDEO_V4L2 diff --git a/drivers/media/radio/Makefile b/drivers/media/radio/Makefile index 0f2b35b..c1575b9 100644 --- a/drivers/media/radio/Makefile +++ b/drivers/media/radio/Makefile @@ -19,6 +19,7 @@ obj-$(CONFIG_RADIO_MAESTRO) += radio-maestro.o obj-$(CONFIG_USB_DSBR) += dsbr100.o obj-$(CONFIG_USB_SI470X) += radio-si470x.o obj-$(CONFIG_USB_MR800) += radio-mr800.o +obj-$(CONFIG_I2C_BCM2048) += radio-bcm2048.o obj-$(CONFIG_RADIO_TEA5764) += radio-tea5764.o EXTRA_CFLAGS += -Isound