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

Commit 114be259 authored by qctecmdr's avatar qctecmdr Committed by Gerrit - the friendly Code Review server
Browse files

Merge "soc: qcom: spss_utils: Modify memory unmapping scheme for cmac_mem"

parents 76380973 5571c4ad
Loading
Loading
Loading
Loading
+6 −2
Original line number Diff line number Diff line
@@ -825,9 +825,8 @@ static int spss_set_fw_cmac(u32 *cmac, size_t cmac_size)
		writel_relaxed(cmac[i], reg + i*sizeof(u32));
		pr_debug("cmac[%d] [0x%x]\n", i, cmac[i]);
	}
	reg += cmac_size;
	iounmap(cmac_mem);

	reg += cmac_size;
	return 0;
}

@@ -1061,6 +1060,11 @@ static int spss_remove(struct platform_device *pdev)
	kfree(spss_utils_dev);
	spss_utils_dev = 0;

	if (cmac_mem != NULL) {
		iounmap(cmac_mem);
		cmac_mem = NULL;
	}

	return 0;
}