• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 // SPDX-License-Identifier: GPL-2.0
2 /******************************************************************************
3  *
4  * Copyright(c) 2007 - 2011 Realtek Corporation. All rights reserved.
5  *
6  ******************************************************************************/
7 
8 #include <rtw_iol.h>
9 
rtw_iol_applied(struct adapter * adapter)10 bool rtw_iol_applied(struct adapter *adapter)
11 {
12 	if (adapter->registrypriv.fw_iol == 1)
13 		return true;
14 
15 	if (adapter->registrypriv.fw_iol == 2 &&
16 	    !adapter_to_dvobj(adapter)->ishighspeed)
17 		return true;
18 	return false;
19 }
20