1/****************************************************************************** 2 * 3 * Copyright(c) 2007 - 2011 Realtek Corporation. All rights reserved. 4 * 5 * This program is free software; you can redistribute it and/or modify it 6 * under the terms of version 2 of the GNU General Public License as 7 * published by the Free Software Foundation. 8 * 9 * This program is distributed in the hope that it will be useful, but WITHOUT 10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or 11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for 12 * more details. 13 * 14 * You should have received a copy of the GNU General Public License along with 15 * this program; if not, write to the Free Software Foundation, Inc., 16 * 51 Franklin Street, Fifth Floor, Boston, MA 02110, USA 17 * 18 * 19 ******************************************************************************/ 20 21#ifndef __OSDEP_INTF_H_ 22#define __OSDEP_INTF_H_ 23 24#include <osdep_service.h> 25#include <drv_types.h> 26 27extern char *rtw_initmac; 28extern int rtw_mc2u_disable; 29 30u8 rtw_init_drv_sw(struct adapter *padapter); 31u8 rtw_free_drv_sw(struct adapter *padapter); 32u8 rtw_reset_drv_sw(struct adapter *padapter); 33 34void rtw_stop_drv_threads (struct adapter *padapter); 35void rtw_cancel_all_timer(struct adapter *padapter); 36 37int rtw_ioctl(struct net_device *dev, struct ifreq *rq, int cmd); 38 39int rtw_init_netdev_name(struct net_device *pnetdev, const char *ifname); 40struct net_device *rtw_init_netdev(struct adapter *padapter); 41u16 rtw_recv_select_queue(struct sk_buff *skb); 42void rtw_proc_remove_one(struct net_device *dev); 43 44int pm_netdev_open(struct net_device *pnetdev, u8 bnormal); 45void rtw_ips_dev_unload(struct adapter *padapter); 46int rtw_ips_pwr_up(struct adapter *padapter); 47void rtw_ips_pwr_down(struct adapter *padapter); 48 49#endif /* _OSDEP_INTF_H_ */ 50