mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-12 16:07:30 +00:00
00aa453ebf
This SoC is too old. It is difficult to maintain any longer. Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
19 lines
605 B
C
19 lines
605 B
C
/*
|
|
* Copyright (C) 2016 Masahiro Yamada <yamada.masahiro@socionext.com>
|
|
*
|
|
* SPDX-License-Identifier: GPL-2.0+
|
|
*/
|
|
|
|
#ifndef _MACH_DEBUG_UART_H
|
|
#define _MACH_DEBUG_UART_H
|
|
|
|
unsigned int uniphier_ld4_debug_uart_init(void);
|
|
unsigned int uniphier_pro4_debug_uart_init(void);
|
|
unsigned int uniphier_sld8_debug_uart_init(void);
|
|
unsigned int uniphier_pro5_debug_uart_init(void);
|
|
unsigned int uniphier_pxs2_debug_uart_init(void);
|
|
unsigned int uniphier_ld6b_debug_uart_init(void);
|
|
unsigned int uniphier_ld11_debug_uart_init(void);
|
|
unsigned int uniphier_ld20_debug_uart_init(void);
|
|
|
|
#endif /* _MACH_DEBUG_UART_H */
|