mirror of
https://github.com/OpenAMP/libmetal.git
synced 2026-08-18 19:37:21 +08:00
Fix coding style reported by do_checkpatch.sh Signed-off-by: Arnaud Pouliquen <arnaud.pouliquen@st.com>
28 lines
372 B
C
28 lines
372 B
C
/*
|
|
* Copyright (c) 2015, Xilinx Inc. and Contributors. All rights reserved.
|
|
*
|
|
* SPDX-License-Identifier: BSD-3-Clause
|
|
*/
|
|
|
|
#include <metal/config.h>
|
|
|
|
int metal_ver_major(void)
|
|
{
|
|
return METAL_VER_MAJOR;
|
|
}
|
|
|
|
int metal_ver_minor(void)
|
|
{
|
|
return METAL_VER_MINOR;
|
|
}
|
|
|
|
int metal_ver_patch(void)
|
|
{
|
|
return METAL_VER_PATCH;
|
|
}
|
|
|
|
const char *metal_ver(void)
|
|
{
|
|
return METAL_VER;
|
|
}
|