staging: vt6655: Remove true comparison

Remove comparison to true in if statement. Problem found using
checkpatch.pl
CHECK: Using comparison to true is error prone

Signed-off-by: Amitoj Kaur Chawla <amitoj1606@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
Amitoj Kaur Chawla 2015-10-05 19:50:50 +05:30 committed by Greg Kroah-Hartman
parent b438000683
commit 137e37d0ed

View File

@ -428,7 +428,7 @@ bool CARDbRadioPowerOff(struct vnt_private *pDevice)
{
bool bResult = true;
if (pDevice->bRadioOff == true)
if (pDevice->bRadioOff)
return true;
switch (pDevice->byRFType) {