Commit 42a18228 authored by Mauro Carvalho Chehab's avatar Mauro Carvalho Chehab

media: si470x: fix a typo at the Makefile causing build issues

Instead of +=, the rule had :=, with actually disables build
of everything else.

Fixes: 58757984 ("media: si470x: allow build both USB and I2C at the same time")
Reported-by: default avatarDaniel Scheller <d.scheller.oss@gmail.com>
Signed-off-by: default avatarMauro Carvalho Chehab <mchehab@s-opensource.com>
parent 8b8fcf32
...@@ -2,6 +2,6 @@ ...@@ -2,6 +2,6 @@
# Makefile for radios with Silicon Labs Si470x FM Radio Receivers # Makefile for radios with Silicon Labs Si470x FM Radio Receivers
# #
obj-$(CONFIG_RADIO_SI470X) := radio-si470x-common.o obj-$(CONFIG_RADIO_SI470X) += radio-si470x-common.o
obj-$(CONFIG_USB_SI470X) += radio-si470x-usb.o obj-$(CONFIG_USB_SI470X) += radio-si470x-usb.o
obj-$(CONFIG_I2C_SI470X) += radio-si470x-i2c.o obj-$(CONFIG_I2C_SI470X) += radio-si470x-i2c.o
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment