mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-16 16:36:58 +07: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
423 B
Makefile
16 lines
423 B
Makefile
tm6000-y := tm6000-cards.o \
|
|
tm6000-core.o \
|
|
tm6000-i2c.o \
|
|
tm6000-video.o \
|
|
tm6000-stds.o \
|
|
tm6000-input.o
|
|
|
|
obj-$(CONFIG_VIDEO_TM6000) += tm6000.o
|
|
obj-$(CONFIG_VIDEO_TM6000_ALSA) += tm6000-alsa.o
|
|
obj-$(CONFIG_VIDEO_TM6000_DVB) += tm6000-dvb.o
|
|
|
|
ccflags-y += -Idrivers/media/i2c
|
|
ccflags-y += -Idrivers/media/tuners
|
|
ccflags-y += -Idrivers/media/dvb-core
|
|
ccflags-y += -Idrivers/media/dvb-frontends
|