1
0
Fork 0
mirror of https://github.com/Ysurac/openmptcprouter.git synced 2025-02-13 20:01:55 +00:00
openmptcprouter/root/target/linux/bcm27xx/patches-5.14/0418-media-i2c-ov9281-Remove-override-of-subdev-name.patch
Ycarus (Yannick Chabanois) 5c593832cc Add 5.14 patches for RPI
2021-10-01 16:58:58 +02:00

33 lines
1.1 KiB
Diff

From 6665f78e27a726835aaeb5fee4419cd1d03c2ce9 Mon Sep 17 00:00:00 2001
From: Dave Stevenson <dave.stevenson@raspberrypi.com>
Date: Mon, 28 Jun 2021 10:49:04 +0100
Subject: [PATCH 418/552] media: i2c: ov9281: Remove override of subdev name
From the original Rockchip driver, the subdev was renamed
from the default to being "mov9281 <dev_name>" whereas the
default would have been "ov9281 <dev_name>".
Remove the override to drop back to the default rather than
a vendor custom string.
Signed-off-by: Dave Stevenson <dave.stevenson@raspberrypi.com>
---
drivers/media/i2c/ov9281.c | 2 --
1 file changed, 2 deletions(-)
diff --git a/drivers/media/i2c/ov9281.c b/drivers/media/i2c/ov9281.c
index 8d799b8b53c6..5f1b83d77473 100644
--- a/drivers/media/i2c/ov9281.c
+++ b/drivers/media/i2c/ov9281.c
@@ -1197,8 +1197,6 @@ static int ov9281_probe(struct i2c_client *client,
if (ret < 0)
goto err_power_off;
- snprintf(sd->name, sizeof(sd->name), "m%s %s",
- OV9281_NAME, dev_name(sd->dev));
ret = v4l2_async_register_subdev_sensor(sd);
if (ret) {
dev_err(dev, "v4l2 async register subdev failed\n");
--
2.33.0