1 /*
2  * Copyright (c) 2006-2024 RT-Thread Development Team
3  *
4  * SPDX-License-Identifier: Apache-2.0
5  *
6  * Change Logs:
7  * Date           Author        Notes
8  * 2024-08-16     zhujiale     first version
9  */
10 #include "sdhci.h"
11 
mmc_regulator_get_supply(struct mmc_host * mmc)12 int mmc_regulator_get_supply(struct mmc_host *mmc)
13 {
14     mmc->supply.vmmc  = -RT_NULL;
15     mmc->supply.vqmmc = -RT_NULL;
16 
17     return 0;
18 }
regulator_get_current_limit(struct regulator * regulator)19 int regulator_get_current_limit(struct regulator *regulator)
20 {
21     return 0;
22 }
23 
regulator_is_supported_voltage(struct regulator * regulator,int min_uV,int max_uV)24 int regulator_is_supported_voltage(struct regulator *regulator,
25 
26                                    int min_uV, int max_uV)
27 {
28     return 0;
29 }
30 
regulator_enable(struct regulator * regulator)31 int regulator_enable(struct regulator *regulator)
32 {
33     return 0;
34 }
regulator_disable(struct regulator * regulator)35 void regulator_disable(struct regulator *regulator)
36 {
37 }
38