subsystems: migrate includes to <zephyr/...>
In order to bring consistency in-tree, migrate all subsystems code to the new prefix <zephyr/...>. Note that the conversion has been scripted, refer to zephyrproject-rtos#45388 for more details. Signed-off-by: Gerard Marull-Paretas <gerard.marull@nordicsemi.no>
This commit is contained in:
parent
3702f7220a
commit
5113c1418d
726 changed files with 2931 additions and 2931 deletions
|
@ -18,8 +18,8 @@
|
|||
#include <mmu.h>
|
||||
#include <string.h>
|
||||
#include <kernel_arch_interface.h>
|
||||
#include <linker/linker-defs.h>
|
||||
#include <sys/util.h>
|
||||
#include <zephyr/linker/linker-defs.h>
|
||||
#include <zephyr/sys/util.h>
|
||||
|
||||
void *location_to_flash(uintptr_t location)
|
||||
{
|
||||
|
|
|
@ -5,10 +5,10 @@
|
|||
*
|
||||
* Not Recently Used (NRU) eviction algorithm for demand paging
|
||||
*/
|
||||
#include <kernel.h>
|
||||
#include <zephyr/kernel.h>
|
||||
#include <mmu.h>
|
||||
#include <kernel_arch_interface.h>
|
||||
#include <init.h>
|
||||
#include <zephyr/init.h>
|
||||
|
||||
/* The accessed and dirty states of each page frame are used to create
|
||||
* a hierarchy with a numerical value. When evicting a page, try to evict
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue