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

Commit 17accc46 authored by Luis de Bethencourt's avatar Luis de Bethencourt Committed by Greg Kroah-Hartman
Browse files

staging: vt6655: Remove boolean comparisons



Boolean tests do not need explicit comparison to true or false.

Signed-off-by: default avatarLuis de Bethencourt <luisbg@osg.samsung.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 4b1443a2
Loading
Loading
Loading
Loading
+4 −4
Original line number Diff line number Diff line
@@ -472,14 +472,14 @@ bool CARDbRadioPowerOn(struct vnt_private *pDevice)
	bool bResult = true;

	pr_debug("chester power on\n");
	if (pDevice->bRadioControlOff == true) {
		if (pDevice->bHWRadioOff == true)
	if (pDevice->bRadioControlOff) {
		if (pDevice->bHWRadioOff)
			pr_debug("chester bHWRadioOff\n");
		if (pDevice->bRadioControlOff == true)
		if (pDevice->bRadioControlOff)
			pr_debug("chester bRadioControlOff\n");
		return false; }

	if (pDevice->bRadioOff == false) {
	if (!pDevice->bRadioOff) {
		pr_debug("chester pbRadioOff\n");
		return true; }