mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-05 20:54:31 +00:00
8a8d24bdf1
Try to maintain some consistency between these variables by using _plat as a suffix for them. Signed-off-by: Simon Glass <sjg@chromium.org>
22 lines
429 B
C
22 lines
429 B
C
/* SPDX-License-Identifier: GPL-2.0+ */
|
|
/*
|
|
* Copyright (c) 2019 Marcel Ziswiler <marcel.ziswiler@toradex.com>
|
|
*/
|
|
|
|
#ifndef __PXA_MMC_GEN_H
|
|
#define __PXA_MMC_GEN_H
|
|
|
|
#include <mmc.h>
|
|
|
|
/*
|
|
* struct pxa_mmc_plat - information about a PXA MMC controller
|
|
*
|
|
* @base: MMC controller base register address
|
|
*/
|
|
struct pxa_mmc_plat {
|
|
struct mmc_config cfg;
|
|
struct mmc mmc;
|
|
struct pxa_mmc_regs *base;
|
|
};
|
|
|
|
#endif /* __PXA_MMC_GEN_H */
|