forked from Minki/linux
cc35bbddfe
This patch supports i2c interface of si470x. The i2c specific part exists in radio-si470x-i2c.c file and the common part uses radio-si470x-common.c file. The '#if defined' is inserted inevitably because of parts used only si470x usb in the common file. The current driver version doesn't support the RDS. Signed-off-by: Joonyoung Shim <jy0922.shim@samsung.com> Signed-off-by: Tobias Lorenz <tobias.lorenz@gmx.net> Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
10 lines
298 B
Makefile
10 lines
298 B
Makefile
#
|
|
# Makefile for radios with Silicon Labs Si470x FM Radio Receivers
|
|
#
|
|
|
|
radio-usb-si470x-objs := radio-si470x-usb.o radio-si470x-common.o
|
|
radio-i2c-si470x-objs := radio-si470x-i2c.o radio-si470x-common.o
|
|
|
|
obj-$(CONFIG_USB_SI470X) += radio-usb-si470x.o
|
|
obj-$(CONFIG_I2C_SI470X) += radio-i2c-si470x.o
|