1 /******************************************************************************
2 *
3 * Copyright(c) 2019 Realtek Corporation.
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 *****************************************************************************/
15 #define _HAL_REGULATION_C_
16 #include "hal_headers.h"
17
rtw_hal_query_regulation(void * phl,struct rtw_regulation_info * info)18 bool rtw_hal_query_regulation(void *phl, struct rtw_regulation_info *info)
19 {
20 return rtw_phl_query_regulation_info(phl, info);
21 }
22
23
24