1 /* 2 * 3 * Copyright (c) 2021, Arm Limited. All rights reserved. 4 * 5 * SPDX-License-Identifier: BSD-3-Clause 6 * 7 */ 8 9 10 #ifndef __FLASH_COMMON_H__ 11 #define __FLASH_COMMON_H__ 12 13 #ifdef __cplusplus 14 extern "C" 15 { 16 #endif 17 18 #include "Driver_Common.h" 19 20 int32_t Select_XIP_Mode_For_Shared_Flash(void); 21 int32_t Select_Write_Mode_For_Shared_Flash(void); 22 23 #ifdef __cplusplus 24 } 25 #endif 26 27 #endif /* __FLASH_COMMON_H__ */ 28