Back to home page

OSCL-LXR

 
 

    


0001 /* SPDX-License-Identifier: GPL-2.0 */
0002 /******************************************************************************
0003  *
0004  * Copyright(c) 2007 - 2010 Realtek Corporation. All rights reserved.
0005  *
0006  * Modifications for inclusion into the Linux staging tree are
0007  * Copyright(c) 2010 Larry Finger. All rights reserved.
0008  *
0009  * Contact information:
0010  * WLAN FAE <wlanfae@realtek.com>
0011  * Larry Finger <Larry.Finger@lwfinger.net>
0012  *
0013  ******************************************************************************/
0014 #ifndef __MLME_OSDEP_H_
0015 #define __MLME_OSDEP_H_
0016 
0017 #include "osdep_service.h"
0018 #include "drv_types.h"
0019 
0020 void r8712_init_mlme_timer(struct _adapter *padapter);
0021 void r8712_os_indicate_disconnect(struct _adapter *adapter);
0022 void r8712_os_indicate_connect(struct _adapter *adapter);
0023 void r8712_report_sec_ie(struct _adapter *adapter, u8 authmode, u8 *sec_ie);
0024 int r8712_recv_indicatepkts_in_order(struct _adapter *adapter,
0025                      struct recv_reorder_ctrl *precvreorder_ctrl,
0026                      int bforced);
0027 void r8712_indicate_wx_assoc_event(struct _adapter *padapter);
0028 void r8712_indicate_wx_disassoc_event(struct _adapter *padapter);
0029 
0030 #endif  /*_MLME_OSDEP_H_*/
0031