mirror of
https://github.com/ARM-software/arm-trusted-firmware.git
synced 2025-08-14 08:27:00 +02:00
Move the rcar_cpld_reset_cpu() function into header file and zap the externs. Signed-off-by: Marek Vasut <marek.vasut+renesas@gmail.com>
13 lines
256 B
C
13 lines
256 B
C
/*
|
|
* Copyright (c) 2018, Renesas Electronics Corporation. All rights reserved.
|
|
*
|
|
* SPDX-License-Identifier: BSD-3-Clause
|
|
*/
|
|
|
|
#ifndef RCAR_ULCB_CPLD_H__
|
|
#define RCAR_ULCB_CPLD_H__
|
|
|
|
extern void rcar_cpld_reset_cpu(void);
|
|
|
|
#endif /* RCAR_ULCB_CPLD_H__ */
|