3
0
mirror of https://github.com/Qortal/Brooklyn.git synced 2025-02-15 19:55:53 +00:00

13 lines
214 B
C
Raw Permalink Normal View History

2022-04-02 18:08:56 +05:00
/* SPDX-License-Identifier: GPL-2.0 */
#ifndef __MMU_H
#define __MMU_H
#ifdef CONFIG_MMU
/* Default "unsigned long" context */
typedef unsigned long mm_context_t;
#else
2022-09-13 23:14:27 +05:00
#include <asm-generic/mmu.h>
2022-04-02 18:08:56 +05:00
#endif
#endif