mirror of
https://git.openwrt.org/openwrt/openwrt.git
synced 2024-11-22 04:56:15 +00:00
8c405cdccc
The patches were generated from the RPi repo with the following command: git format-patch v6.6.34..rpi-6.1.y Some patches needed rebasing and, as usual, the applied and reverted, wireless drivers, Github workflows, READMEs and defconfigs patches were removed. Signed-off-by: Álvaro Fernández Rojas <noltari@gmail.com>
27 lines
905 B
Diff
27 lines
905 B
Diff
From 4014ad56ce72183449e59323e9209bbe57b374e1 Mon Sep 17 00:00:00 2001
|
|
From: David Plowman <david.plowman@raspberrypi.com>
|
|
Date: Wed, 12 May 2021 07:39:21 +0100
|
|
Subject: [PATCH 0293/1085] media: i2c: ov5647: Fix v4l2-compliance failure
|
|
subscribing to events
|
|
|
|
Fixes the following v4l2-compliance failure:
|
|
|
|
fail: v4l2-test-controls.cpp(871): subscribe event for control 'User Controls' failed test
|
|
|
|
Signed-off-by: David Plowman <david.plowman@raspberrypi.com>
|
|
---
|
|
drivers/media/i2c/ov5647.c | 2 ++
|
|
1 file changed, 2 insertions(+)
|
|
|
|
--- a/drivers/media/i2c/ov5647.c
|
|
+++ b/drivers/media/i2c/ov5647.c
|
|
@@ -887,6 +887,8 @@ static const struct v4l2_subdev_core_ops
|
|
.g_register = ov5647_sensor_get_register,
|
|
.s_register = ov5647_sensor_set_register,
|
|
#endif
|
|
+ .subscribe_event = v4l2_ctrl_subdev_subscribe_event,
|
|
+ .unsubscribe_event = v4l2_event_subdev_unsubscribe,
|
|
};
|
|
|
|
static const struct v4l2_rect *
|