src/sys/dev/pci/drm/include/linux/mmzone.h

14 lines
220 B
C
Raw Normal View History

/* Public domain. */
#ifndef _LINUX_MMZONE_H
#define _LINUX_MMZONE_H
#include <linux/mm_types.h>
2024-01-18 08:29:14 +00:00
#include <linux/nodemask.h>
#define MAX_ORDER 11
2024-05-06 16:20:26 +00:00
#define NR_PAGE_ORDERS (MAX_ORDER + 1)
2024-01-18 08:29:14 +00:00
#define pfn_to_nid(x) 0
#endif