mirror of
https://github.com/torvalds/linux.git
synced 2024-11-01 17:51:43 +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>
23 lines
731 B
Makefile
23 lines
731 B
Makefile
#
|
|
# Makefile for the USB media device drivers
|
|
#
|
|
|
|
# DVB USB-only drivers
|
|
obj-y += ttusb-dec/ ttusb-budget/ dvb-usb/ dvb-usb-v2/ siano/ b2c2/
|
|
obj-y += zr364xx/ stkwebcam/ s2255/
|
|
|
|
obj-$(CONFIG_USB_VIDEO_CLASS) += uvc/
|
|
obj-$(CONFIG_USB_GSPCA) += gspca/
|
|
obj-$(CONFIG_USB_PWC) += pwc/
|
|
obj-$(CONFIG_VIDEO_CPIA2) += cpia2/
|
|
obj-$(CONFIG_USB_SN9C102) += sn9c102/
|
|
obj-$(CONFIG_VIDEO_AU0828) += au0828/
|
|
obj-$(CONFIG_VIDEO_HDPVR) += hdpvr/
|
|
obj-$(CONFIG_VIDEO_PVRUSB2) += pvrusb2/
|
|
obj-$(CONFIG_VIDEO_TLG2300) += tlg2300/
|
|
obj-$(CONFIG_VIDEO_USBVISION) += usbvision/
|
|
obj-$(CONFIG_VIDEO_STK1160) += stk1160/
|
|
obj-$(CONFIG_VIDEO_CX231XX) += cx231xx/
|
|
obj-$(CONFIG_VIDEO_TM6000) += tm6000/
|
|
obj-$(CONFIG_VIDEO_EM28XX) += em28xx/
|