Skip to content

Commit

Permalink
staging: vt6656: remove bool from vnt_radio_power_on ret
Browse files Browse the repository at this point in the history
The driver uses logical only error checking a bool true would flag error.

Signed-off-by: Malcolm Priestley <tvboxspy@gmail.com>
Link: https://lore.kernel.org/r/cc52b67c-9ef8-3e57-815a-44d10701919e@gmail.com
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
  • Loading branch information
Malcolm Priestley authored and Greg Kroah-Hartman committed Jan 3, 2020
1 parent 69cc1f9 commit 07f59f1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/staging/vt6656/card.c
Original file line number Diff line number Diff line change
Expand Up @@ -719,7 +719,7 @@ int vnt_radio_power_off(struct vnt_private *priv)
*/
int vnt_radio_power_on(struct vnt_private *priv)
{
int ret = true;
int ret = 0;

vnt_exit_deep_sleep(priv);

Expand Down

0 comments on commit 07f59f1

Please sign in to comment.