1 /* 2 * Copyright (C) 2021 Huawei Device Co., Ltd. 3 * Licensed under the Apache License, Version 2.0 (the "License"); 4 * you may not use this file except in compliance with the License. 5 * You may obtain a copy of the License at 6 * 7 * http://www.apache.org/licenses/LICENSE-2.0 8 * 9 * Unless required by applicable law or agreed to in writing, software 10 * distributed under the License is distributed on an "AS IS" BASIS, 11 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 * See the License for the specific language governing permissions and 13 * limitations under the License. 14 */ 15 #include <string.h> 16 #include <unistd.h> 17 #include <sys/types.h> 18 #include <sys/stat.h> 19 #include <fcntl.h> 20 #include <stdlib.h> 21 #include "wifi_log.h" 22 #include "wifi_hal_vendor_interface.h" 23 #include "securec.h" 24 25 #undef LOG_TAG 26 #define LOG_TAG "WifiHalVendorInterfaceTest" 27 28 const int FEATURE_VALUE = 2; 29 WifiInitializeTest(void)30HalVendorError WifiInitializeTest(void) 31 { 32 return HAL_VENDOR_SUCCESS; 33 } 34 WifiCleanUpTest(void)35HalVendorError WifiCleanUpTest(void) 36 { 37 return HAL_VENDOR_SUCCESS; 38 } 39 WifiGetSupportedFeatureTest(long * feature)40HalVendorError WifiGetSupportedFeatureTest(long *feature) 41 { 42 *feature = FEATURE_VALUE; 43 return HAL_VENDOR_SUCCESS; 44 } 45 InitHalVendorFunc(WifiHalVendorFunc * func)46HalVendorError InitHalVendorFunc(WifiHalVendorFunc *func) 47 { 48 func->wifiInitialize = WifiInitializeTest; 49 func->wifiCleanUp = WifiCleanUpTest; 50 func->wifiGetSupportedFeature = WifiGetSupportedFeatureTest; 51 return HAL_VENDOR_SUCCESS; 52 } 53