Primary Git Repository for the Zephyr Project. Zephyr is a new generation, scalable, optimized, secure RTOS for multiple hardware architectures.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

20 lines
376 B

/*
* 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_ */