1 /* 2 * Copyright (c) 2017 Nordic Semiconductor ASA 3 * 4 * SPDX-License-Identifier: Apache-2.0 5 */ 6 7 #ifndef ZEPHYR_DRIVERS_FLASH_FLASH_PRIV_H_ 8 #define ZEPHYR_DRIVERS_FLASH_FLASH_PRIV_H_ 9 10 #if defined(CONFIG_FLASH_PAGE_LAYOUT) flash_page_layout_not_implemented(void)11static inline void flash_page_layout_not_implemented(void) 12 { 13 k_panic(); 14 } 15 #endif 16 17 #endif 18