mirror of
https://github.com/ARM-software/arm-trusted-firmware.git
synced 2025-04-17 01:54:22 +00:00

Update the version to match release versioning scheme. No functional change. Signed-off-by: Hieu Nguyen <hieu.nguyen.dn@renesas.com> Change-Id: Ib481fade925f74dbea1dd2b39c1abfab888379e4
17 lines
380 B
C
17 lines
380 B
C
/*
|
|
* Copyright (c) 2015-2021, Renesas Electronics Corporation. All rights reserved.
|
|
*
|
|
* SPDX-License-Identifier: BSD-3-Clause
|
|
*/
|
|
|
|
#ifndef RCAR_VERSION_H
|
|
#define RCAR_VERSION_H
|
|
|
|
#include <arch_helpers.h>
|
|
|
|
#define VERSION_OF_RENESAS "4.0.0"
|
|
#define VERSION_OF_RENESAS_MAXLEN 128
|
|
|
|
extern const uint8_t version_of_renesas[VERSION_OF_RENESAS_MAXLEN];
|
|
|
|
#endif /* RCAR_VERSION_H */
|