Skip to content

Commit

Permalink
media: si470x: fix a typo at the Makefile causing build issues
Browse files Browse the repository at this point in the history
Instead of +=, the rule had :=, with actually disables build
of everything else.

Fixes: 5875798 ("media: si470x: allow build both USB and I2C at the same time")
Reported-by: Daniel Scheller <d.scheller.oss@gmail.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab@s-opensource.com>
  • Loading branch information
Mauro Carvalho Chehab committed Apr 18, 2018
1 parent 8b8fcf3 commit 42a1822
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/media/radio/si470x/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@
# 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_I2C_SI470X) += radio-si470x-i2c.o

0 comments on commit 42a1822

Please sign in to comment.