io_mmc.h 335 B

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