23 lines
340 B
C
23 lines
340 B
C
/*
|
|
* Copyright (c) 2017-2020, Arm Limited. All rights reserved.
|
|
*
|
|
* SPDX-License-Identifier: BSD-3-Clause
|
|
*
|
|
*/
|
|
|
|
#ifndef __TFM_PS_DEFS_H__
|
|
#define __TFM_PS_DEFS_H__
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
/* Invalid UID */
|
|
#define TFM_PS_INVALID_UID 0
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif /* __TFM_PS_DEFS_H__ */
|