mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-18 18:59:44 +00:00
17 lines
257 B
C
17 lines
257 B
C
|
/*
|
||
|
* Copyright (C) 2016 Grinn
|
||
|
*
|
||
|
* SPDX-License-Identifier: GPL-2.0+
|
||
|
*/
|
||
|
|
||
|
#ifndef __ARCH_ARM_MACH_LITESOM_SOM_H__
|
||
|
#define __ARCH_ARM_MACH_LITESOM_SOM_H__
|
||
|
|
||
|
int litesom_mmc_init(bd_t *bis);
|
||
|
|
||
|
#ifdef CONFIG_SPL_BUILD
|
||
|
void litesom_init_f(void);
|
||
|
#endif
|
||
|
|
||
|
#endif
|