You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
312 B
17 lines
312 B
/* |
|
* Copyright (c) 2017 Nordic Semiconductor ASA |
|
* |
|
* SPDX-License-Identifier: Apache-2.0 |
|
*/ |
|
|
|
#ifndef ZEPHYR_DRIVERS_FLASH_FLASH_PRIV_H_ |
|
#define ZEPHYR_DRIVERS_FLASH_FLASH_PRIV_H_ |
|
|
|
#if defined(CONFIG_FLASH_PAGE_LAYOUT) |
|
static inline void flash_page_layout_not_implemented(void) |
|
{ |
|
k_panic(); |
|
} |
|
#endif |
|
|
|
#endif
|
|
|