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 __PHYDM_DFS_H__ 16 #define __PHYDM_DFS_H__ 17 18 #define DFS_VERSION "0.0" 19 20 /* ============================================================ 21 * Definition 22 * ============================================================ 23 */ 24 25 /* ============================================================ 26 * 1 structure 27 * ============================================================ 28 */ 29 30 /* ============================================================ 31 * enumeration 32 * ============================================================ 33 */ 34 35 enum phydm_dfs_region_domain { 36 PHYDM_DFS_DOMAIN_UNKNOWN = 0, 37 PHYDM_DFS_DOMAIN_FCC = 1, 38 PHYDM_DFS_DOMAIN_MKK = 2, 39 PHYDM_DFS_DOMAIN_ETSI = 3, 40 }; 41 42 /* ============================================================ 43 * function prototype 44 * ============================================================ 45 */ 46 #define phydm_dfs_master_enabled(dm) false 47 48 #endif /*#ifndef __PHYDM_DFS_H__ */ 49