1 /*
2  * Copyright (c) 2019-2021, Arm Limited. All rights reserved.
3  *
4  * SPDX-License-Identifier: BSD-3-Clause
5  *
6  */
7 
8 /**
9  * \file its_flash_nor.h
10  *
11  * \brief Implementations of the flash interface functions for a NOR flash
12  *        device. See its_flash_fs_ops_t for full documentation of functions.
13  */
14 
15 #ifndef __ITS_FLASH_NOR_H__
16 #define __ITS_FLASH_NOR_H__
17 
18 #ifdef __cplusplus
19 extern "C" {
20 #endif
21 
22 extern const struct its_flash_fs_ops_t its_flash_fs_ops_nor;
23 
24 #ifdef __cplusplus
25 }
26 #endif
27 
28 #endif /* __ITS_FLASH_NOR_H__ */
29