[PATCH 05/21] media: i2c: it6625: drop stale GCC < 4.4.6 workaround
From: Hermes Wu via B4 Relay
Date: Fri Sep 18 2026 - 05:09:12 EST
From: Hermes Wu <Hermes.wu@xxxxxxxxxx>
The kernel-wide minimum GCC version is 8.1 (scripts/min-tool-version.sh),
so the explicit .reserved = { 0 } initializer kept for GCC < 4.4.6 is no
longer needed in either v4l2_dv_timings_cap initializer.
Signed-off-by: Hermes Wu <Hermes.wu@xxxxxxxxxx>
---
drivers/media/i2c/it6625.c | 3 ---
1 file changed, 3 deletions(-)
diff --git a/drivers/media/i2c/it6625.c b/drivers/media/i2c/it6625.c
index e18baa6e1a1933f301d9d3057c2c08411f104077..97780c3d2d8fd3567ef18b3d2fc46b4e1f0758d7 100644
--- a/drivers/media/i2c/it6625.c
+++ b/drivers/media/i2c/it6625.c
@@ -331,8 +331,6 @@ static const s64 it6625_link_freq[] = {
*/
static const struct v4l2_dv_timings_cap it6625_timings_cap = {
.type = V4L2_DV_BT_656_1120,
- /* keep this initialization for compatibility with GCC < 4.4.6 */
- .reserved = { 0 },
V4L2_INIT_BT_TIMINGS(640, 3840, 480, 2160, 27000000, 300000000,
V4L2_DV_BT_STD_CEA861 | V4L2_DV_BT_STD_DMT |
@@ -347,7 +345,6 @@ static const struct v4l2_dv_timings_cap it6625_timings_cap = {
*/
static const struct v4l2_dv_timings_cap it6626_cphy_3trio_timings_cap = {
.type = V4L2_DV_BT_656_1120,
- .reserved = { 0 },
V4L2_INIT_BT_TIMINGS(640, 3840, 480, 2160, 27000000, 594000000,
V4L2_DV_BT_STD_CEA861 | V4L2_DV_BT_STD_DMT |
--
2.34.1