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

Commit c9527c4a authored by Jeyaprakash Soundrapandian's avatar Jeyaprakash Soundrapandian Committed by Gerrit - the friendly Code Review server
Browse files

Merge "msm: camera: util: Remove logk from read and write" into dev/msm-4.9-camx

parents 3bc965b5 fe102e14
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -22,7 +22,7 @@ int cam_io_w(uint32_t data, void __iomem *addr)
		return -EINVAL;

	CAM_DBG(CAM_UTIL, "0x%pK %08x", addr, data);
	writel_relaxed(data, addr);
	writel_relaxed_no_log(data, addr);

	return 0;
}
@@ -35,7 +35,7 @@ int cam_io_w_mb(uint32_t data, void __iomem *addr)
	CAM_DBG(CAM_UTIL, "0x%pK %08x", addr, data);
	/* Ensure previous writes are done */
	wmb();
	writel_relaxed(data, addr);
	writel_relaxed_no_log(data, addr);

	return 0;
}