1/*	$NetBSD: vm_basic_types.h,v 1.3 2021/12/18 23:45:45 riastradh Exp $	*/
2
3/* SPDX-License-Identifier: GPL-2.0 */
4#ifndef _VM_BASIC_TYPES_H_
5#define _VM_BASIC_TYPES_H_
6#include <linux/kernel.h>
7
8typedef u32 uint32;
9typedef s32 int32;
10typedef u64 uint64;
11typedef u16 uint16;
12typedef s16 int16;
13typedef u8  uint8;
14typedef s8  int8;
15
16typedef uint64 PA;
17typedef uint32 PPN;
18typedef uint64 PPN64;
19
20typedef bool Bool;
21
22#define MAX_UINT32 U32_MAX
23
24#endif
25