mirror of
https://github.com/team-infusion-developers/android_kernel_samsung_msm8976.git
synced 2024-11-01 10:33:27 +00:00
88f8472c9f
On a few places, := were using instead of +=, causing drivers to not compile. While here, standardize the usage of += on all cases where multiple lines are needed, and for obj-y/obj-m targets, and := when just one line is needed, on <module>-obj rules. Reported-by: Hans Verkuil <hverkuil@xs4all.nl> Identified-by: Antti Polosaari <crope@iki.fi> Tested-by: Antti Palosaari <crope@iki.fi> Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
16 lines
570 B
Makefile
16 lines
570 B
Makefile
|
|
saa7134-y += saa7134-cards.o saa7134-core.o saa7134-i2c.o
|
|
saa7134-y += saa7134-ts.o saa7134-tvaudio.o saa7134-vbi.o
|
|
saa7134-y += saa7134-video.o
|
|
saa7134-$(CONFIG_VIDEO_SAA7134_RC) += saa7134-input.o
|
|
|
|
obj-$(CONFIG_VIDEO_SAA7134) += saa6752hs.o saa7134.o saa7134-empress.o
|
|
|
|
obj-$(CONFIG_VIDEO_SAA7134_ALSA) += saa7134-alsa.o
|
|
|
|
obj-$(CONFIG_VIDEO_SAA7134_DVB) += saa7134-dvb.o
|
|
|
|
ccflags-y += -I$(srctree)/drivers/media/i2c
|
|
ccflags-y += -I$(srctree)/drivers/media/tuners
|
|
ccflags-y += -I$(srctree)/drivers/media/dvb-core
|
|
ccflags-y += -I$(srctree)/drivers/media/dvb-frontends
|