mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-27 13:35:09 +07:00
59af336795
This is the first step in the effort to move the pvrusb2 driver over to using the v4l2-subdev framework. This commit involves mainly splitting apart pvrusb2-i2c-core - part of it is the driver's I2C adapter driver and the rest is the old i2c module handling logic. The i2c module handling junk is moved out to pvrusb2-i2c-track and various header references are correspondingly updated. Yes, this patch has a huge pile of checkpatch complaints, but I'm NOT going to fix any of it. Why? First, I'm moving a large chunk of existing code and I'm not going to spend time adjusting it to match someone's idea of coding style. Second, in the end I expect all that moved code to go away by the time the rework is done so wasting time on it now to adhere to the standard is in the end a large waste of time. Signed-off-by: Mike Isely <isely@pobox.com> Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
23 lines
931 B
Makefile
23 lines
931 B
Makefile
obj-pvrusb2-sysfs-$(CONFIG_VIDEO_PVRUSB2_SYSFS) := pvrusb2-sysfs.o
|
|
obj-pvrusb2-debugifc-$(CONFIG_VIDEO_PVRUSB2_DEBUGIFC) := pvrusb2-debugifc.o
|
|
obj-pvrusb2-dvb-$(CONFIG_VIDEO_PVRUSB2_DVB) := pvrusb2-dvb.o
|
|
|
|
pvrusb2-objs := pvrusb2-i2c-core.o pvrusb2-i2c-cmd-v4l2.o \
|
|
pvrusb2-i2c-track.o \
|
|
pvrusb2-audio.o pvrusb2-i2c-chips-v4l2.o \
|
|
pvrusb2-encoder.o pvrusb2-video-v4l.o \
|
|
pvrusb2-eeprom.o pvrusb2-tuner.o \
|
|
pvrusb2-main.o pvrusb2-hdw.o pvrusb2-v4l2.o \
|
|
pvrusb2-ctrl.o pvrusb2-std.o pvrusb2-devattr.o \
|
|
pvrusb2-context.o pvrusb2-io.o pvrusb2-ioread.o \
|
|
pvrusb2-cx2584x-v4l.o pvrusb2-wm8775.o \
|
|
$(obj-pvrusb2-dvb-y) \
|
|
$(obj-pvrusb2-sysfs-y) $(obj-pvrusb2-debugifc-y)
|
|
|
|
obj-$(CONFIG_VIDEO_PVRUSB2) += pvrusb2.o
|
|
|
|
EXTRA_CFLAGS += -Idrivers/media/video
|
|
EXTRA_CFLAGS += -Idrivers/media/common/tuners
|
|
EXTRA_CFLAGS += -Idrivers/media/dvb/dvb-core
|
|
EXTRA_CFLAGS += -Idrivers/media/dvb/frontends
|