mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-12-16 08:13:17 +00:00
43b573df33
The MMC controller driver is (and ought to be) the only user of these register definitions. Put them in a header next to the driver to remove the dependency on a specific ARM platform's headers. Due to the sunxi_mmc_init() prototype, the file was not renamed. None of the register definitions were changed. Signed-off-by: Samuel Holland <samuel@sholland.org> Reviewed-by: Jaehoon Chung <jh80.chung@samsung.com>
8 lines
163 B
C
8 lines
163 B
C
/* SPDX-License-Identifier: GPL-2.0+ */
|
|
|
|
#ifndef _ASM_ARCH_MMC_H_
|
|
#define _ASM_ARCH_MMC_H_
|
|
|
|
struct mmc *sunxi_mmc_init(int sdc_no);
|
|
|
|
#endif /* _ASM_ARCH_MMC_H_ */
|