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

Commit c43f5f9d authored by Chaehyun Lim's avatar Chaehyun Lim Committed by Greg Kroah-Hartman
Browse files

staging: wilc1000: change handle_set_channel's return type to void



When handle_set_channel is called in hostIFthread that is a kernel
thread, it is not checked return type of this function. This patch
changes return type to void and removes braces if statement due
to have a single statement.

Signed-off-by: default avatarChaehyun Lim <chaehyun.lim@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent b41dfdb1
Loading
Loading
Loading
Loading
+3 −7
Original line number Diff line number Diff line
@@ -299,7 +299,7 @@ static struct wilc_vif *wilc_get_vif_from_idx(struct wilc *wilc, int idx)
	return wilc->vif[index];
}

static s32 handle_set_channel(struct wilc_vif *vif,
static void handle_set_channel(struct wilc_vif *vif,
			       struct channel_attr *hif_set_ch)
{
	s32 result = 0;
@@ -313,12 +313,8 @@ static s32 handle_set_channel(struct wilc_vif *vif,
	result = wilc_send_config_pkt(vif, SET_CFG, &wid, 1,
				      wilc_get_vif_idx(vif));

	if (result) {
	if (result)
		PRINT_ER("Failed to set channel\n");
		return -EINVAL;
	}

	return result;
}

static s32 handle_set_wfi_drv_handler(struct wilc_vif *vif,