/* * Copyright (c) 2023, Artinchip Technology Co., Ltd * * SPDX-License-Identifier: Apache-2.0 * * Authors: xuan.wen */ #ifndef _FAL_CFG_H_ #define _FAL_CFG_H_ #include #include #include #define NOR_FLASH_DEV_NAME "norflash0" /* ===================== Flash device Configuration ========================= */ extern struct fal_flash_dev nor_flash0; /* flash device table */ #define FAL_FLASH_DEV_TABLE \ { \ &nor_flash0, \ } #endif /* _FAL_CFG_H_ */