Initial commit
Some checks failed
Build Kernel / Build all affected Kernels (push) Has been cancelled
Build all core packages / Build all core packages for selected target (push) Has been cancelled
Build and Push prebuilt tools container / Build and Push all prebuilt containers (push) Has been cancelled
Build Toolchains / Build Toolchains for each target (push) Has been cancelled
Build host tools / Build host tools for linux and macos based systems (push) Has been cancelled
Coverity scan build / Coverity x86/64 build (push) Has been cancelled
Some checks failed
Build Kernel / Build all affected Kernels (push) Has been cancelled
Build all core packages / Build all core packages for selected target (push) Has been cancelled
Build and Push prebuilt tools container / Build and Push all prebuilt containers (push) Has been cancelled
Build Toolchains / Build Toolchains for each target (push) Has been cancelled
Build host tools / Build host tools for linux and macos based systems (push) Has been cancelled
Coverity scan build / Coverity x86/64 build (push) Has been cancelled
This commit is contained in:
@@ -0,0 +1,21 @@
|
||||
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));
|
||||
Reference in New Issue
Block a user