bcm27xx: switch to 5.15
[openwrt/openwrt.git] / target / linux / bcm27xx / patches-5.10 / 950-0306-bcm2835-mmc-uninitialized_var-is-no-more.patch
1 From 99c87c4c80fb0dd24f6849d0846c0c4a418903a9 Mon Sep 17 00:00:00 2001
2 From: popcornmix <popcornmix@gmail.com>
3 Date: Thu, 3 Sep 2020 14:02:21 +0100
4 Subject: [PATCH] bcm2835-mmc: uninitialized_var is no more
5
6 ---
7 drivers/mmc/host/bcm2835-mmc.c | 2 +-
8 1 file changed, 1 insertion(+), 1 deletion(-)
9
10 --- a/drivers/mmc/host/bcm2835-mmc.c
11 +++ b/drivers/mmc/host/bcm2835-mmc.c
12 @@ -367,7 +367,7 @@ static void bcm2835_bcm2835_mmc_read_blo
13 unsigned long flags;
14 size_t blksize, len, chunk;
15
16 - u32 uninitialized_var(scratch);
17 + u32 scratch = 0;
18 u8 *buf;
19
20 blksize = host->data->blksz;