These patches were generated from: https://github.com/raspberrypi/linux/commits/rpi-6.12.y With the following command: git format-patch -N v6.12.27..HEAD (HEAD -> 8d3206ee456a5ecdf9ddbfd8e5e231e4f0cd716e) Exceptions: - (def)configs patches - github workflows patches - applied & reverted patches - readme patches - wireless patches Signed-off-by: Álvaro Fernández Rojas <noltari@gmail.com>
21 lines
791 B
Diff
21 lines
791 B
Diff
From 38816c225b809e8ad6790c9b51ff5b122f42f2fe 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
|
|
@@ -996,7 +996,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));
|