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>
26 lines
599 B
Makefile
26 lines
599 B
Makefile
#
|
|
# Makefile for the kernel multimedia device drivers.
|
|
#
|
|
|
|
obj-y += ttpci/ \
|
|
b2c2/ \
|
|
pluto2/ \
|
|
dm1105/ \
|
|
pt1/ \
|
|
mantis/ \
|
|
ngene/ \
|
|
ddbridge/ \
|
|
b2c2/ \
|
|
saa7146/
|
|
|
|
obj-$(CONFIG_VIDEO_IVTV) += ivtv/
|
|
obj-$(CONFIG_VIDEO_ZORAN) += zoran/
|
|
obj-$(CONFIG_VIDEO_CX18) += cx18/
|
|
obj-$(CONFIG_VIDEO_CX23885) += cx23885/
|
|
obj-$(CONFIG_VIDEO_CX25821) += cx25821/
|
|
obj-$(CONFIG_VIDEO_CX88) += cx88/
|
|
obj-$(CONFIG_VIDEO_BT848) += bt8xx/
|
|
obj-$(CONFIG_VIDEO_SAA7134) += saa7134/
|
|
obj-$(CONFIG_VIDEO_SAA7164) += saa7164/
|
|
obj-$(CONFIG_VIDEO_MEYE) += meye/
|
|
obj-$(CONFIG_STA2X11_VIP) += sta2x11/
|