Blame SOURCES/strace-b89a69dec27cf638df0e17db80ed937c3e1abf77.patch

3fa9ef
diff -Naurp a/xlat/v4l2_control_id_bases.h b/xlat/v4l2_control_id_bases.h
3fa9ef
--- a/xlat/v4l2_control_id_bases.h	2018-08-14 00:44:25.000000000 +0000
3fa9ef
+++ b/xlat/v4l2_control_id_bases.h	2019-05-23 12:21:15.396137688 +0000
3fa9ef
@@ -31,12 +31,16 @@ DIAG_POP_IGNORE_TAUTOLOGICAL_COMPARE
3fa9ef
 #else
3fa9ef
 # define V4L2_CID_USER_TI_VPE_BASE (V4L2_CID_BASE + 0x1050)
3fa9ef
 #endif
3fa9ef
+#ifndef STRACE_WORKAROUND_FOR_V4L2_CID_USER_IMX_BASE
3fa9ef
+# define STRACE_WORKAROUND_FOR_V4L2_CID_USER_IMX_BASE
3fa9ef
+# undef V4L2_CID_USER_IMX_BASE
3fa9ef
+#endif
3fa9ef
 #if defined(V4L2_CID_USER_IMX_BASE) || (defined(HAVE_DECL_V4L2_CID_USER_IMX_BASE) && HAVE_DECL_V4L2_CID_USER_IMX_BASE)
3fa9ef
 DIAG_PUSH_IGNORE_TAUTOLOGICAL_COMPARE
3fa9ef
-static_assert((V4L2_CID_USER_IMX_BASE) == ((V4L2_CID_BASE + 0x1090)), "V4L2_CID_USER_IMX_BASE != (V4L2_CID_BASE + 0x1090)");
3fa9ef
+static_assert((V4L2_CID_USER_IMX_BASE) == ((V4L2_CID_BASE + 0x10b0)), "V4L2_CID_USER_IMX_BASE != (V4L2_CID_BASE + 0x10b0)");
3fa9ef
 DIAG_POP_IGNORE_TAUTOLOGICAL_COMPARE
3fa9ef
 #else
3fa9ef
-# define V4L2_CID_USER_IMX_BASE (V4L2_CID_BASE + 0x1090)
3fa9ef
+# define V4L2_CID_USER_IMX_BASE (V4L2_CID_BASE + 0x10b0)
3fa9ef
 #endif
3fa9ef
 #if defined(V4L2_CID_MPEG_BASE) || (defined(HAVE_DECL_V4L2_CID_MPEG_BASE) && HAVE_DECL_V4L2_CID_MPEG_BASE)
3fa9ef
 DIAG_PUSH_IGNORE_TAUTOLOGICAL_COMPARE
3fa9ef
@@ -146,6 +150,21 @@ const struct xlat v4l2_control_id_bases[
3fa9ef
  XLAT(V4L2_CID_USER_MEYE_BASE),
3fa9ef
  XLAT(V4L2_CID_USER_BTTV_BASE),
3fa9ef
  XLAT(V4L2_CID_USER_TI_VPE_BASE),
3fa9ef
+#ifndef STRACE_WORKAROUND_FOR_V4L2_CID_USER_IMX_BASE
3fa9ef
+# define STRACE_WORKAROUND_FOR_V4L2_CID_USER_IMX_BASE
3fa9ef
+/*
3fa9ef
+* Linux kernel commit v4.18-rc2-106-g421860b9d47053badce4b247576fa48df9ab4c48
3fa9ef
+* has changed the value of V4L2_CID_USER_IMX_BASE constant introduced
3fa9ef
+* by commit v4.13-rc1~141^2~121 because the old value was already used
3fa9ef
+* by V4L2_CID_USER_MAX217X_BASE.
3fa9ef
+* This is of course an ABI breakage that affects Linux kernels starting
3fa9ef
+* with 4.13 and up to 4.18, as well as their LTS derivatives.
3fa9ef
+* Since the imx driver didn't provide any public control ID definitions,
3fa9ef
+* it looks like the best way to handle this situation is to pretend that
3fa9ef
+* the old value of V4L2_CID_USER_IMX_BASE didn't exist.
3fa9ef
+*/
3fa9ef
+# undef V4L2_CID_USER_IMX_BASE
3fa9ef
+#endif
3fa9ef
  XLAT(V4L2_CID_USER_IMX_BASE),
3fa9ef
  XLAT(V4L2_CID_MPEG_BASE),
3fa9ef
  XLAT(V4L2_CID_MPEG_CX2341X_BASE),
3fa9ef
diff -Naurp a/xlat/v4l2_control_id_bases.in b/xlat/v4l2_control_id_bases.in
3fa9ef
--- a/xlat/v4l2_control_id_bases.in	2018-05-06 15:34:41.000000000 +0000
3fa9ef
+++ b/xlat/v4l2_control_id_bases.in	2019-05-23 12:21:01.146061843 +0000
3fa9ef
@@ -2,7 +2,22 @@ V4L2_CID_BASE				(V4L2_CTRL_CLASS_USER |
3fa9ef
 V4L2_CID_USER_MEYE_BASE			(V4L2_CID_BASE + 0x1000)
3fa9ef
 V4L2_CID_USER_BTTV_BASE			(V4L2_CID_BASE + 0x1010)
3fa9ef
 V4L2_CID_USER_TI_VPE_BASE		(V4L2_CID_BASE + 0x1050)
3fa9ef
-V4L2_CID_USER_IMX_BASE			(V4L2_CID_BASE + 0x1090)
3fa9ef
+#ifndef STRACE_WORKAROUND_FOR_V4L2_CID_USER_IMX_BASE
3fa9ef
+# define STRACE_WORKAROUND_FOR_V4L2_CID_USER_IMX_BASE
3fa9ef
+/*
3fa9ef
+ * Linux kernel commit v4.18-rc2-106-g421860b9d47053badce4b247576fa48df9ab4c48
3fa9ef
+ * has changed the value of V4L2_CID_USER_IMX_BASE constant introduced
3fa9ef
+ * by commit v4.13-rc1~141^2~121 because the old value was already used
3fa9ef
+ * by V4L2_CID_USER_MAX217X_BASE.
3fa9ef
+ * This is of course an ABI breakage that affects Linux kernels starting
3fa9ef
+ * with 4.13 and up to 4.18, as well as their LTS derivatives.
3fa9ef
+ * Since the imx driver didn't provide any public control ID definitions,
3fa9ef
+ * it looks like the best way to handle this situation is to pretend that
3fa9ef
+ * the old value of V4L2_CID_USER_IMX_BASE didn't exist.
3fa9ef
+ */
3fa9ef
+# undef V4L2_CID_USER_IMX_BASE
3fa9ef
+#endif
3fa9ef
+V4L2_CID_USER_IMX_BASE			(V4L2_CID_BASE + 0x10b0)
3fa9ef
 V4L2_CID_MPEG_BASE			(V4L2_CTRL_CLASS_MPEG | 0x900)
3fa9ef
 V4L2_CID_MPEG_CX2341X_BASE		(V4L2_CTRL_CLASS_MPEG | 0x1000)
3fa9ef
 V4L2_CID_MPEG_MFC51_BASE		(V4L2_CTRL_CLASS_MPEG | 0x1100)