From: Mauro Carvalho Chehab Date: Wed, 18 Apr 2018 19:21:41 +0000 (-0400) Subject: media: si470x: fix a typo at the Makefile causing build issues X-Git-Tag: v5.15~8685^2~409 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=42a182282ea2426d56b2d63be634ee419194c45c;p=platform%2Fkernel%2Flinux-starfive.git media: si470x: fix a typo at the Makefile causing build issues Instead of +=, the rule had :=, with actually disables build of everything else. Fixes: 58757984ca3c ("media: si470x: allow build both USB and I2C at the same time") Reported-by: Daniel Scheller Signed-off-by: Mauro Carvalho Chehab --- diff --git a/drivers/media/radio/si470x/Makefile b/drivers/media/radio/si470x/Makefile index 5635008..682b314 100644 --- a/drivers/media/radio/si470x/Makefile +++ b/drivers/media/radio/si470x/Makefile @@ -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