mirror of
https://github.com/Ysurac/openmptcprouter.git
synced 2025-02-15 04:42:02 +00:00
21 lines
711 B
Diff
21 lines
711 B
Diff
From 6969f14740ffb0116280f8bf8deb7b261aad91bb Mon Sep 17 00:00:00 2001
|
|
From: Alexander Winkowski <dereference23@outlook.com>
|
|
Date: Mon, 3 Jul 2023 18:36:45 +0000
|
|
Subject: [PATCH] media: i2c: ov2311: Fix uninitialized variable usage
|
|
|
|
Signed-off-by: Alexander Winkowski <dereference23@outlook.com>
|
|
---
|
|
drivers/media/i2c/ov2311.c | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
--- a/drivers/media/i2c/ov2311.c
|
|
+++ b/drivers/media/i2c/ov2311.c
|
|
@@ -1018,7 +1018,7 @@ static int ov2311_check_sensor_id(struct
|
|
struct i2c_client *client)
|
|
{
|
|
struct device *dev = &ov2311->client->dev;
|
|
- u32 id = 0, id_msb;
|
|
+ u32 id = 0, id_msb = 0;
|
|
int ret;
|
|
|
|
ret = ov2311_read_reg(client, OV2311_REG_CHIP_ID + 1,
|