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

Commit 315d7fa9 authored by Roel Kluin's avatar Roel Kluin Committed by Greg Kroah-Hartman
Browse files

staging: wis-sony-tuner.c: fix &&/|| error



Fix &&/|| typo

Signed-off-by: default avatarRoel Kluin <roel.kluin@gmail.com>
Signed-off-by: default avatarAndrew Morton <akpm@linux-foundation.org>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@suse.de>
parent 38526988
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -370,7 +370,7 @@ static int set_if(struct i2c_client *client)
	i2c_transfer(client->adapter, &msg, 1);

	/* Select MPX mode if not forced by the user */
	if (force_mpx_mode >= 0 || force_mpx_mode < MPX_NUM_MODES)
	if (force_mpx_mode >= 0 && force_mpx_mode < MPX_NUM_MODES)
		t->mpxmode = force_mpx_mode;
	else
		t->mpxmode = default_mpx_mode;