You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
349 B
11 lines
349 B
#ifndef __V850_MMU_CONTEXT_H__
|
|
#define __V850_MMU_CONTEXT_H__
|
|
|
|
#define destroy_context(mm) ((void)0)
|
|
#define init_new_context(tsk,mm) 0
|
|
#define switch_mm(prev,next,tsk) ((void)0)
|
|
#define deactivate_mm(tsk,mm) do { } while (0)
|
|
#define activate_mm(prev,next) ((void)0)
|
|
#define enter_lazy_tlb(mm,tsk) ((void)0)
|
|
|
|
#endif /* __V850_MMU_CONTEXT_H__ */
|
|
|