Updated linux/version_patch.pl

Commit baa057e29b58 changed v4l2-dev.c to use pr_info instead of
printk. Thus, we need to update version_patch.pl to find the line
to patch in v4l2-dev.c

Signed-off-by: Jasmin Jessich <jasmin@anw.at>
This commit is contained in:
Jasmin Jessich
2018-05-06 10:54:07 +02:00
parent 97c1228540
commit e7cd711ab8

View File

@@ -95,6 +95,6 @@ $logs = "Latest git patches (needed if you report a bug to linux-media\@vger.ker
# Patch dvbdev
patch_file "drivers/media/dvb-core/dvbdev.c", "__init init_dvbdev", "MKDEV", $logs;
# Patch v4l2-dev
patch_file "drivers/media/v4l2-core/v4l2-dev.c", "__init videodev_init", "printk", $logs;
patch_file "drivers/media/v4l2-core/v4l2-dev.c", "__init videodev_init", "pr_info", $logs;
# Patch rc core
patch_file "drivers/media/rc/rc-main.c", "__init rc_core_init", "rc_map_register", $logs;