zephyr/subsys/sd/sd_init.h

21 lines
376 B
C
Raw Permalink Normal View History

/*
* Copyright 2022 NXP
*
* SPDX-License-Identifier: Apache-2.0
*/
#ifndef ZEPHYR_SUBSYS_SD_INIT_PRIV_H_
#define ZEPHYR_SUBSYS_SD_INIT_PRIV_H_
#include <zephyr/kernel.h>
#include <zephyr/sd/sd.h>
int sdio_card_init(struct sd_card *card);
int sdmmc_card_init(struct sd_card *card);
int mmc_card_init(struct sd_card *card);
#endif /* ZEPHYR_SUBSYS_SD_INIT_PRIV_H_ */