Merge tag 'u-boot-amlogic-20200708' of https://gitlab.denx.de/u-boot/custodians/u...
[platform/kernel/u-boot.git] / include / dm / platform_data / pxa_mmc_gen.h
1 /* SPDX-License-Identifier: GPL-2.0+ */
2 /*
3  * Copyright (c) 2019 Marcel Ziswiler <marcel.ziswiler@toradex.com>
4  */
5
6 #ifndef __PXA_MMC_GEN_H
7 #define __PXA_MMC_GEN_H
8
9 #include <mmc.h>
10
11 /*
12  * struct pxa_mmc_platdata - information about a PXA MMC controller
13  *
14  * @base:       MMC controller base register address
15  */
16 struct pxa_mmc_plat {
17         struct mmc_config       cfg;
18         struct mmc              mmc;
19         struct pxa_mmc_regs     *base;
20 };
21
22 #endif /* __PXA_MMC_GEN_H */