1 /* SPDX-License-Identifier: GPL-2.0 */ 2 /****************************************************************************** 3 * 4 * Copyright(c) 2007 - 2016 Realtek Corporation. 5 * 6 * Contact Information: 7 * wlanfae <wlanfae@realtek.com> 8 * Realtek Corporation, No. 2, Innovation Road II, Hsinchu Science Park, 9 * Hsinchu 300, Taiwan. 10 * 11 * Larry Finger <Larry.Finger@lwfinger.net> 12 * 13 *****************************************************************************/ 14 15 #ifndef __PHYDMKFREE_H__ 16 #define __PHYDMKFREE_H__ 17 18 #define KFREE_VERSION "1.0" 19 20 enum phydm_kfree_channeltosw { 21 PHYDM_2G = 0, 22 PHYDM_5GLB1 = 1, 23 PHYDM_5GLB2 = 2, 24 PHYDM_5GMB1 = 3, 25 PHYDM_5GMB2 = 4, 26 PHYDM_5GHB = 5, 27 }; 28 29 void phydm_config_kfree(void *dm_void, u8 channel_to_sw, u8 *kfree_table); 30 31 #endif 32