mirror of
https://github.com/openwrt/openwrt.git
synced 2024-12-20 14:13:16 +00:00
77e97abf12
Also removes random module and switches to new bcm2711 thermal driver. Boot tested on RPi 4B v1.1 4G. Signed-off-by: Álvaro Fernández Rojas <noltari@gmail.com>
22 lines
742 B
Diff
22 lines
742 B
Diff
From f73609479c8542bd974a6e9aaf8bffc8ed09eaca 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
|
|
@@ -1001,7 +1001,7 @@ const struct unicam_fmt *get_first_suppo
|
|
{
|
|
struct v4l2_subdev_mbus_code_enum mbus_code;
|
|
const struct unicam_fmt *fmt = NULL;
|
|
- int ret;
|
|
+ int ret = 0;
|
|
int j;
|
|
|
|
for (j = 0; ret != -EINVAL && ret != -ENOIOCTLCMD; ++j) {
|