Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 04a899b4 authored by Ram Prakash Gupta's avatar Ram Prakash Gupta
Browse files

mmc: sdhci-msm: Initialize variable to resolve uninitialized access



Initialize variable to fix uninitialized access.

Change-Id: I86470918ad431684103415baac45c03542f8aa8c
Signed-off-by: default avatarRam Prakash Gupta <rampraka@codeaurora.org>
parent 74de7711
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -1304,7 +1304,7 @@ static ssize_t store_mask_and_match(struct device *dev,
	unsigned long value;
	char *token;
	int i = 0;
	u32 mask, match, bit_shift, testbus;
	u32 mask = 0, match = 0, bit_shift = 0, testbus = 0;

	char *temp = (char *)buf;