Commit 899127b6 authored by Hans Verkuil's avatar Hans Verkuil Committed by Mauro Carvalho Chehab
Browse files

[media] This adds support for the BCM2048 radio module found in Nokia N900



Add suport for Nokia N900 radio. This driver is far from being ready
to be added at the main tree, as it creates its own sysfs interface,
and violates lots of Coding Style rules, doing even evil things like
returning from a function inside a macro.

So, it is being added at staging with the condition that it will be
soon be fixed.

[m.chehab@samsung.com: added a description for the patch]
Signed-off-by: default avatarEero Nurkkala <ext-eero.nurkkala@nokia.com>
Signed-off-by: default avatarNils Faerber <nils.faerber@kernelconcepts.de>
Signed-off-by: default avatarJoni Lapilainen <joni.lapilainen@gmail.com>
Signed-off-by: default avatarPali Rohár <pali.rohar@gmail.com>
Signed-off-by: default avatarHans Verkuil <hans.verkuil@cisco.com>
[hans.verkuil@cisco.com: moved to staging, added slab.h include]

Signed-off-by: default avatarMauro Carvalho Chehab <m.chehab@samsung.com>
parent 71b6aaaf
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
@@ -21,6 +21,8 @@ if STAGING_MEDIA
# Please keep them in alphabetic order
source "drivers/staging/media/as102/Kconfig"

source "drivers/staging/media/bcm2048/Kconfig"

source "drivers/staging/media/cxd2099/Kconfig"

source "drivers/staging/media/davinci_vpfe/Kconfig"
+1 −0
Original line number Diff line number Diff line
obj-$(CONFIG_DVB_AS102)		+= as102/
obj-$(CONFIG_I2C_BCM2048)	+= bcm2048/
obj-$(CONFIG_DVB_CXD2099)	+= cxd2099/
obj-$(CONFIG_LIRC_STAGING)	+= lirc/
obj-$(CONFIG_SOLO6X10)		+= solo6x10/
+13 −0
Original line number Diff line number Diff line
#
# Multimedia Video device configuration
#

config I2C_BCM2048
	tristate "Broadcom BCM2048 FM Radio Receiver support"
	depends on I2C && VIDEO_V4L2 && RADIO_ADAPTERS
	---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.
+1 −0
Original line number Diff line number Diff line
obj-$(CONFIG_I2C_BCM2048) += radio-bcm2048.o
+2745 −0

File added.

Preview size limit exceeded, changes collapsed.

Loading