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>
22 lines
803 B
Diff
22 lines
803 B
Diff
From 25ebe726abe01e0d3fa60b1a4cb71f3bb87f4fb9 Mon Sep 17 00:00:00 2001
|
|
From: Jacko Dirks <jdirks.linuxdev@gmail.com>
|
|
Date: Tue, 5 May 2020 14:33:31 +0200
|
|
Subject: [PATCH 0239/1085] media: bcm2835: unicam: Fix uninitialized warning
|
|
|
|
Signed-off-by: Jacko Dirks <jdirks.linuxdev@gmail.com>
|
|
---
|
|
drivers/media/platform/bcm2835/bcm2835-unicam.c | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
--- a/drivers/media/platform/bcm2835/bcm2835-unicam.c
|
|
+++ b/drivers/media/platform/bcm2835/bcm2835-unicam.c
|
|
@@ -1006,7 +1006,7 @@ const struct unicam_fmt *get_first_suppo
|
|
struct v4l2_subdev_mbus_code_enum mbus_code;
|
|
const struct unicam_fmt *fmt = NULL;
|
|
unsigned int i;
|
|
- int ret;
|
|
+ int ret = 0;
|
|
|
|
for (i = 0; ret != -EINVAL && ret != -ENOIOCTLCMD; ++i) {
|
|
memset(&mbus_code, 0, sizeof(mbus_code));
|