1 /* 2 * Copyright (c) 2001-2019, Arm Limited and Contributors. All rights reserved. 3 * 4 * SPDX-License-Identifier: BSD-3-Clause 5 */ 6 7 #include "cc_pal_types.h" 8 CC_PalApbcCntrInit(void)9void CC_PalApbcCntrInit(void) 10 { 11 return; 12 } 13 CC_PalApbcCntrValue(void)14void CC_PalApbcCntrValue(void) 15 { 16 return; 17 } 18 CC_PalApbcModeSelect(CCBool isApbcInc)19CCError_t CC_PalApbcModeSelect(CCBool isApbcInc) 20 { 21 CC_UNUSED_PARAM(isApbcInc); 22 23 return 0; 24 } 25 26