summaryrefslogtreecommitdiff
path: root/include/drivers/arm/cryptocell/712/cc_pal_types_plat.h
blob: 84100245b2d33d7b32a90d3be27f49e9492b3797 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
/*
 * Copyright (c) 2017, ARM Limited and Contributors. All rights reserved.
 *
 * SPDX-License-Identifier: BSD-3-Clause
 */

/*! @file
@brief This file contains basic type definitions that are platform-dependent.
*/
#ifndef _CC_PAL_TYPES_PLAT_H
#define _CC_PAL_TYPES_PLAT_H
/* Host specific types for standard (ISO-C99) compilant platforms */

#include <stddef.h>
#include <stdint.h>

typedef uint32_t CCStatus;

#define CCError_t	CCStatus
#define CC_INFINITE	0xFFFFFFFF

#define CEXPORT_C
#define CIMPORT_C

#endif /*_CC_PAL_TYPES_PLAT_H*/