2017-11-23 20:47:35 +08:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2017 Nordic Semiconductor ASA
|
|
|
|
*
|
|
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
|
|
*/
|
|
|
|
|
2018-09-15 01:43:44 +08:00
|
|
|
#ifndef ZEPHYR_DRIVERS_FLASH_FLASH_PRIV_H_
|
|
|
|
#define ZEPHYR_DRIVERS_FLASH_FLASH_PRIV_H_
|
2017-11-23 20:47:35 +08:00
|
|
|
|
|
|
|
#if defined(CONFIG_FLASH_PAGE_LAYOUT)
|
|
|
|
static inline void flash_page_layout_not_implemented(void)
|
|
|
|
{
|
|
|
|
k_panic();
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif
|