18c2ecf20Sopenharmony_ci/* SPDX-License-Identifier: GPL-2.0 */
28c2ecf20Sopenharmony_ci#ifndef __MMU_H
38c2ecf20Sopenharmony_ci#define __MMU_H
48c2ecf20Sopenharmony_ci
58c2ecf20Sopenharmony_ci#ifdef CONFIG_MMU
68c2ecf20Sopenharmony_ci/* Default "unsigned long" context */
78c2ecf20Sopenharmony_citypedef unsigned long mm_context_t;
88c2ecf20Sopenharmony_ci#else
98c2ecf20Sopenharmony_citypedef struct {
108c2ecf20Sopenharmony_ci	unsigned long		end_brk;
118c2ecf20Sopenharmony_ci} mm_context_t;
128c2ecf20Sopenharmony_ci#endif
138c2ecf20Sopenharmony_ci
148c2ecf20Sopenharmony_ci#endif
15