mirror of
https://github.com/torvalds/linux.git
synced 2024-11-17 09:31:50 +00:00
rsi: rsi_91x: misleading debug printk
There is a missing set of curly braces here so the debug output says "Probe confirm received" unintentionally. Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com> Signed-off-by: John W. Linville <linville@tuxdriver.com>
This commit is contained in:
parent
a7488c792f
commit
3f3aa2fb48
@ -1292,10 +1292,11 @@ int rsi_mgmt_pkt_recv(struct rsi_common *common, u8 *msg)
|
||||
return -EINVAL;
|
||||
}
|
||||
} else if (msg_type == TX_STATUS_IND) {
|
||||
if (msg[15] == PROBEREQ_CONFIRM)
|
||||
if (msg[15] == PROBEREQ_CONFIRM) {
|
||||
common->mgmt_q_block = false;
|
||||
rsi_dbg(FSM_ZONE, "%s: Probe confirm received\n",
|
||||
__func__);
|
||||
}
|
||||
} else {
|
||||
return rsi_mgmt_pkt_to_core(common, msg, msg_len, msg_type);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user