1 /*
2 * Copyright (c) 2023 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 #include "emmc_if.h"
10 #include "hdf_log.h"
11
EmmcGetCardState(DevHandle handle,uint8_t * state,uint32_t size)12 int32_t EmmcGetCardState(DevHandle handle, uint8_t *state, uint32_t size)
13 {
14 (void)handle;
15 (void)state;
16 (void)size;
17 HDF_LOGI("EmmcGetCardState: success!");
18 return HDF_SUCCESS;
19 }
20
EmmcGetCardCsd(DevHandle handle,uint8_t * csd,uint32_t size)21 int32_t EmmcGetCardCsd(DevHandle handle, uint8_t *csd, uint32_t size)
22 {
23 (void)handle;
24 (void)csd;
25 (void)size;
26 HDF_LOGI("EmmcGetCardCsd: success!");
27 return HDF_SUCCESS;
28 }
29
EmmcGetCardInfo(DevHandle handle,uint8_t * cardInfo,uint32_t size)30 int32_t EmmcGetCardInfo(DevHandle handle, uint8_t *cardInfo, uint32_t size)
31 {
32 (void)handle;
33 (void)cardInfo;
34 (void)size;
35 HDF_LOGI("EmmcGetCardInfo: success!");
36 return HDF_SUCCESS;
37 }
38