Message ID | 20210203062717.1228-1-samirweng1979@163.com |
---|---|
State | Superseded |
Headers | show |
Series | rsi: remove redundant assignment | expand |
samirweng1979 <samirweng1979@163.com> wrote: > From: wengjianfeng <wengjianfeng@yulong.com> > > INVALID_QUEUE has been used as a return value,it is not necessary to > assign it to q_num,so just return INVALID_QUEUE. > > Signed-off-by: wengjianfeng <wengjianfeng@yulong.com> Patch applied to wireless-drivers-next.git, thanks. d48aea6054d0 rsi: remove redundant assignment -- https://patchwork.kernel.org/project/linux-wireless/patch/20210203062717.1228-1-samirweng1979@163.com/ https://wireless.wiki.kernel.org/en/developers/documentation/submittingpatches
diff --git a/drivers/net/wireless/rsi/rsi_91x_core.c b/drivers/net/wireless/rsi/rsi_91x_core.c index 2d49c5b..a48e616 100644 --- a/drivers/net/wireless/rsi/rsi_91x_core.c +++ b/drivers/net/wireless/rsi/rsi_91x_core.c @@ -193,8 +193,7 @@ static u8 rsi_core_determine_hal_queue(struct rsi_common *common) if (recontend_queue) goto get_queue_num; - q_num = INVALID_QUEUE; - return q_num; + return INVALID_QUEUE; } common->selected_qnum = q_num;