Yann Gautier | 9abbd6a | 2018-10-15 09:36:44 +0200 | [diff] [blame] | 1 | /* |
Vyacheslav Yurkov | b74313c | 2021-06-04 10:08:39 +0200 | [diff] [blame] | 2 | * Copyright (c) 2015-2021, ARM Limited and Contributors. All rights reserved. |
Yann Gautier | 9abbd6a | 2018-10-15 09:36:44 +0200 | [diff] [blame] | 3 | * |
| 4 | * SPDX-License-Identifier: BSD-3-Clause |
| 5 | */ |
| 6 | |
| 7 | #ifndef IO_MMC_H |
| 8 | #define IO_MMC_H |
| 9 | |
Antonio Nino Diaz | e0f9063 | 2018-12-14 00:18:21 +0000 | [diff] [blame] | 10 | #include <drivers/io/io_driver.h> |
Yann Gautier | 9abbd6a | 2018-10-15 09:36:44 +0200 | [diff] [blame] | 11 | |
Vyacheslav Yurkov | b74313c | 2021-06-04 10:08:39 +0200 | [diff] [blame] | 12 | struct io_mmc_dev_spec { |
| 13 | bool use_boot_part; |
| 14 | }; |
| 15 | |
Yann Gautier | 9abbd6a | 2018-10-15 09:36:44 +0200 | [diff] [blame] | 16 | int register_io_dev_mmc(const io_dev_connector_t **dev_con); |
| 17 | |
| 18 | #endif /* IO_MMC_H */ |