Gentoo Archives: gentoo-commits

From: Mike Pagano <mpagano@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/linux-patches:5.17 commit in: /
Date: Thu, 28 Apr 2022 12:03:30
Message-Id: 1651147342.92aed87f4e6d8447265a91433c456412c945f5fe.mpagano@gentoo
1 commit: 92aed87f4e6d8447265a91433c456412c945f5fe
2 Author: Mike Pagano <mpagano <AT> gentoo <DOT> org>
3 AuthorDate: Thu Apr 28 12:02:22 2022 +0000
4 Commit: Mike Pagano <mpagano <AT> gentoo <DOT> org>
5 CommitDate: Thu Apr 28 12:02:22 2022 +0000
6 URL: https://gitweb.gentoo.org/proj/linux-patches.git/commit/?id=92aed87f
7
8 Add V4L2_ASYNC as a dependency for VIDEO_OV2640
9
10 Signed-off-by: Mike Pagano <mpagano <AT> gentoo.org>
11
12 0000_README | 4 ++++
13 2910_media-i2c-ov2640-Depend-on-V4L2_ASYNC.patch | 29 ++++++++++++++++++++++++
14 2 files changed, 33 insertions(+)
15
16 diff --git a/0000_README b/0000_README
17 index c24bfaa9..a5f79181 100644
18 --- a/0000_README
19 +++ b/0000_README
20 @@ -79,6 +79,10 @@ Patch: 2900_tmp513-Fix-build-issue-by-selecting-CONFIG_REG.patch
21 From: https://bugs.gentoo.org/710790
22 Desc: tmp513 requies REGMAP_I2C to build. Select it by default in Kconfig. See bug #710790. Thanks to Phil Stracchino
23
24 +Patch: 2910_media-i2c-ov2640-Depend-on-V4L2_ASYNC.patch
25 +From: Mike Pagano
26 +Desc: Add V4L2_ASYNC as a dependency to match other drivers and prevent failures when compile testing
27 +
28 Patch: 2920_sign-file-patch-for-libressl.patch
29 From: https://bugs.gentoo.org/717166
30 Desc: sign-file: full functionality with modern LibreSSL
31
32 diff --git a/2910_media-i2c-ov2640-Depend-on-V4L2_ASYNC.patch b/2910_media-i2c-ov2640-Depend-on-V4L2_ASYNC.patch
33 new file mode 100644
34 index 00000000..6fb67ffa
35 --- /dev/null
36 +++ b/2910_media-i2c-ov2640-Depend-on-V4L2_ASYNC.patch
37 @@ -0,0 +1,29 @@
38 +From 58d23260ea259cb1734d3074be56aabe4c90bae4 Mon Sep 17 00:00:00 2001
39 +From: Mike Pagano <mpagano@g.o>
40 +Date: Wed, 27 Apr 2022 17:13:01 -0400
41 +Subject: [PATCH 1/1] Add V4L2_ASYNC as a dependency to match other drivers and
42 + prevent failures when compile testing.
43 +Cc: mpagano@g.o
44 +
45 +Fixes: ff3cc65cadb5 ("media: v4l: async, fwnode: Improve module organisation")
46 +
47 +Signed-off-by: Mike Pagano <mpagano@g.o>
48 +---
49 + drivers/media/i2c/Kconfig | 1 +
50 + 1 file changed, 1 insertion(+)
51 +
52 +diff --git a/drivers/media/i2c/Kconfig b/drivers/media/i2c/Kconfig
53 +index fae2baabb773..2b20aa6c37b1 100644
54 +--- a/drivers/media/i2c/Kconfig
55 ++++ b/drivers/media/i2c/Kconfig
56 +@@ -372,6 +372,7 @@ config VIDEO_OV13B10
57 + config VIDEO_OV2640
58 + tristate "OmniVision OV2640 sensor support"
59 + depends on VIDEO_DEV && I2C
60 ++ select V4L2_ASYNC
61 + help
62 + This is a Video4Linux2 sensor driver for the OmniVision
63 + OV2640 camera.
64 +--
65 +2.35.1
66 +