• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /*
2  * Copyright (c) 2021-2021 Huawei Device Co., Ltd.
3  *
4  * HDF is dual licensed: you can use it either under the terms of
5  * the GPL, or the BSD license, at your option.
6  * See the LICENSE file in the root of this repository for complete details.
7  */
8 
9 #ifndef HDF_SDIO_INTF_H
10 #define HDF_SDIO_INTF_H
11 
12 #include "hdf_base.h"
13 #include "hdf_ibus_intf.h"
14 #include "hdf_log.h"
15 #include "securec.h"
16 
17 #ifdef __cplusplus
18 #if __cplusplus
19 extern "C" {
20 #endif
21 #endif
22 
23 int32_t HdfSdioBusInit(struct BusDev *dev, const struct HdfConfigWlanBus *busConfig);
24 
25 #ifdef __cplusplus
26 #if __cplusplus
27 }
28 #endif
29 #endif
30 
31 #endif
32 
33