mirror of
https://github.com/openwrt/openwrt.git
synced 2024-12-20 06:08:08 +00:00
8299d1f057
Rebased RPi foundation patches on linux 5.10.59, removed applied and reverted patches, wireless patches and defconfig patches. bcm2708: boot tested on RPi B+ v1.2 bcm2709: boot tested on RPi 4B v1.1 4G bcm2711: boot tested on RPi 4B v1.1 4G Signed-off-by: Álvaro Fernández Rojas <noltari@gmail.com>
22 lines
793 B
Diff
22 lines
793 B
Diff
From 0524a77793eceb9d7c34d2833bdeec9f9cdb3825 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] 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
|
|
@@ -1004,7 +1004,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));
|