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

Commit f4b32c29 authored by Gustavo A. R. Silva's avatar Gustavo A. R. Silva Committed by Mauro Carvalho Chehab
Browse files

media: ov13858: Use false for boolean value



Assign true or false to boolean variables instead of an integer value.

This issue was detected with the help of Coccinelle.

Signed-off-by: default avatarGustavo A. R. Silva <gustavo@embeddedor.com>
Signed-off-by: default avatarSakari Ailus <sakari.ailus@linux.intel.com>
Signed-off-by: default avatarMauro Carvalho Chehab <mchehab@s-opensource.com>
parent d365bc92
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -1569,7 +1569,7 @@ static int __maybe_unused ov13858_resume(struct device *dev)

error:
	ov13858_stop_streaming(ov13858);
	ov13858->streaming = 0;
	ov13858->streaming = false;
	return ret;
}