Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion core/rtw_cmd.c
Original file line number Diff line number Diff line change
Expand Up @@ -3830,7 +3830,7 @@ void rtw_disassoc_cmd_callback(_adapter* padapter, struct cmd_obj *pcmd)
rtw_free_cmd_obj(pcmd);

exit:
return;
}


Expand Down
9 changes: 5 additions & 4 deletions core/rtw_mlme.c
Original file line number Diff line number Diff line change
Expand Up @@ -141,6 +141,7 @@ void _rtw_free_mlme_priv (struct mlme_priv *pmlmepriv)
}
}
exit:
return;
}

sint _rtw_enqueue_network(_queue *queue, struct wlan_network *pnetwork)
Expand All @@ -158,7 +159,7 @@ sint _rtw_enqueue_network(_queue *queue, struct wlan_network *pnetwork)
_exit_critical_bh(&queue->lock, &irqL);

exit:


return _SUCCESS;
}
Expand Down Expand Up @@ -266,7 +267,7 @@ void _rtw_free_network(struct mlme_priv *pmlmepriv ,struct wlan_network *pnetwor
_exit_critical_bh(&free_queue->lock, &irqL);

exit:

return;

}

Expand All @@ -293,7 +294,7 @@ void _rtw_free_network_nolock(struct mlme_priv *pmlmepriv, struct wlan_network *
//_exit_critical(&free_queue->lock, &irqL);

exit:

return;

}

Expand Down Expand Up @@ -2141,7 +2142,7 @@ void rtw_stassoc_event_callback(_adapter *adapter, u8 *pbuf)


exit:

return;

}

Expand Down
3 changes: 2 additions & 1 deletion core/rtw_security.c
Original file line number Diff line number Diff line change
Expand Up @@ -203,7 +203,8 @@ static void crc32_init(void)
}
bcrc32initialized= 1;
}
exit:
exit:
return;
}

static u32 getcrc32(u8 *buf, sint len)
Expand Down
2 changes: 1 addition & 1 deletion core/rtw_sta_mgt.c
Original file line number Diff line number Diff line change
Expand Up @@ -811,7 +811,7 @@ void rtw_free_all_stainfo(_adapter *padapter)
}

exit:

return;

}

Expand Down
2 changes: 1 addition & 1 deletion core/rtw_xmit.c
Original file line number Diff line number Diff line change
Expand Up @@ -393,7 +393,7 @@ void _rtw_free_xmit_priv (struct xmit_priv *pxmitpriv)
rtw_free_hwxmits(padapter);

out:

return;

}

Expand Down
2 changes: 1 addition & 1 deletion os_dep/linux/mlme_linux.c
Original file line number Diff line number Diff line change
Expand Up @@ -289,7 +289,7 @@ void rtw_report_sec_ie(_adapter *adapter,u8 authmode,u8 *sec_ie)
}

exit:

return;

}

Expand Down
2 changes: 1 addition & 1 deletion os_dep/linux/usb_ops_linux.c
Original file line number Diff line number Diff line change
Expand Up @@ -972,7 +972,7 @@ void usb_read_port_complete(struct urb *purb, struct pt_regs *regs)
}

exit:

return;

}

Expand Down