bcm27xx: add support for linux v5.15
[openwrt/staging/chunkeey.git] / target / linux / bcm27xx / patches-5.15 / 950-0719-media-i2c-Add-acpi-support-to-ov7251.patch
1 From 72ffad08ed8a635ada5a15be818f151f20d92e9b Mon Sep 17 00:00:00 2001
2 From: Daniel Scally <djrscally@gmail.com>
3 Date: Tue, 15 Feb 2022 23:07:30 +0000
4 Subject: [PATCH] media: i2c: Add acpi support to ov7251
5
6 Add support for enumeration through ACPI to the ov7251 driver
7
8 Signed-off-by: Daniel Scally <djrscally@gmail.com>
9 ---
10 drivers/media/i2c/ov7251.c | 8 ++++++++
11 1 file changed, 8 insertions(+)
12
13 --- a/drivers/media/i2c/ov7251.c
14 +++ b/drivers/media/i2c/ov7251.c
15 @@ -14,6 +14,7 @@
16 #include <linux/i2c.h>
17 #include <linux/init.h>
18 #include <linux/module.h>
19 +#include <linux/mod_devicetable.h>
20 #include <linux/regulator/consumer.h>
21 #include <linux/slab.h>
22 #include <linux/types.h>
23 @@ -1501,9 +1502,16 @@ static const struct of_device_id ov7251_
24 };
25 MODULE_DEVICE_TABLE(of, ov7251_of_match);
26
27 +static const struct acpi_device_id ov7251_acpi_match[] = {
28 + { "INT347E" },
29 + { }
30 +};
31 +MODULE_DEVICE_TABLE(acpi, ov7251_acpi_match);
32 +
33 static struct i2c_driver ov7251_i2c_driver = {
34 .driver = {
35 .of_match_table = ov7251_of_match,
36 + .acpi_match_table = ov7251_acpi_match,
37 .name = "ov7251",
38 },
39 .probe_new = ov7251_probe,