1 /* 2 * Copyright (c) 2015-2021, ARM Limited and Contributors. All rights reserved. 3 * 4 * SPDX-License-Identifier: BSD-3-Clause 5 */ 6 7 #ifndef IO_MMC_H 8 #define IO_MMC_H 9 10 #include <drivers/io/io_driver.h> 11 12 struct io_mmc_dev_spec { 13 bool use_boot_part; 14 }; 15 16 int register_io_dev_mmc(const io_dev_connector_t **dev_con); 17 18 #endif /* IO_MMC_H */ 19