Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 0aafee9b authored by qctecmdr's avatar qctecmdr Committed by Gerrit - the friendly Code Review server
Browse files

Merge "radio: RTC6226: Add support for RTC6226 FM chip"

parents 53165f02 95124ffa
Loading
Loading
Loading
Loading
+13 −0
Original line number Diff line number Diff line
@@ -506,4 +506,17 @@ config RADIO_ZOLTRIX_PORT

endif # V4L_RADIO_ISA_DRIVERS

config I2C_RTC6226_QCA
	tristate "Richwave RTC6226 FM Radio Receiver support with I2C for QCA"
	depends on I2C && RADIO_RTC6226_QCA
	---help---
	  This is a driver for I2C devices with the Richwave RTC6226
	  chip.

	  Say Y here if you want to connect this type of radio to your
	  computer's I2C port.

	  To compile this driver as a module, choose M here: the
	  module will be called radio-i2c-RTC6226_QCA.

endif # RADIO_ADAPTERS
+1 −0
Original line number Diff line number Diff line
@@ -34,5 +34,6 @@ obj-$(CONFIG_RADIO_WL1273) += radio-wl1273.o
obj-$(CONFIG_RADIO_WL128X) += wl128x/
obj-$(CONFIG_RADIO_TEA575X) += tea575x.o
obj-$(CONFIG_USB_RAREMONO) += radio-raremono.o
obj-$(CONFIG_I2C_RTC6226_QCA) += rtc6226/

shark2-objs := radio-shark2.o radio-tea5777.o
+7 −0
Original line number Diff line number Diff line
#
# Makefile for radios with Richwave RTC6226 FM Tuner
#

radio-i2c-rtc6226-qca-objs	:= radio-rtc6226-i2c.o radio-rtc6226-common.o

obj-$(CONFIG_I2C_RTC6226_QCA) += radio-i2c-rtc6226-qca.o
Loading