]> git.dujemihanovic.xyz Git - u-boot.git/commitdiff
mmc: initialize an err variable
authorJaehoon Chung <jh80.chung@samsung.com>
Thu, 3 Dec 2020 21:36:00 +0000 (06:36 +0900)
committerPeng Fan <peng.fan@nxp.com>
Fri, 19 Feb 2021 06:59:28 +0000 (14:59 +0800)
Initialize an err variable to 0.

Signed-off-by: Jaehoon Chung <jh80.chung@samsung.com>
Reported-by: Coverity (CID: 313548)
Reviewed-by: Tom Rini <trini@konsulko.com>
drivers/mmc/mmc.c

index 36aab50f64e76350f74110c074dfd95bbf69efe7..d67af80c0110cdae3d2ab106277b44815c4e5268 100644 (file)
@@ -2062,7 +2062,7 @@ static int mmc_select_hs400es(struct mmc *mmc)
 
 static int mmc_select_mode_and_width(struct mmc *mmc, uint card_caps)
 {
-       int err;
+       int err = 0;
        const struct mode_width_tuning *mwt;
        const struct ext_csd_bus_width *ecbw;