• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /* SPDX-License-Identifier: GPL-2.0 OR BSD-3-Clause */
2 /* Copyright(c) 2007 - 2011 Realtek Corporation. */
3 
4 #ifndef __RTW_FW_H__
5 #define __RTW_FW_H__
6 
7 struct rt_firmware {
8 	u8 *data;
9 	u32 size;
10 };
11 
12 #include "drv_types.h"
13 
14 int rtl8188e_firmware_download(struct adapter *padapter);
15 void rtw_reset_8051(struct adapter *padapter);
16 
17 #endif
18