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

Commit 0add9dee authored by Sushmita Susheelendra's avatar Sushmita Susheelendra Committed by Gerrit - the friendly Code Review server
Browse files

msm: camera: isp: Rate limit error log



Rate limit error logs when no free payload is found.
This prevents watchdog barks due to excessive logging.

Change-Id: I08dfd034ce962cb73b201c49043813825aabb868
Signed-off-by: default avatarSushmita Susheelendra <ssusheel@codeaurora.org>
parent 2152c7bc
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -209,7 +209,7 @@ static int cam_vfe_bus_get_evt_payload(
{
	if (list_empty(&common_data->free_payload_list)) {
		*evt_payload = NULL;
		CAM_ERR(CAM_ISP, "No free payload");
		CAM_ERR_RATE_LIMIT(CAM_ISP, "No free payload");
		return -ENODEV;
	}