aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/include/asm-arm/mmu.h
blob: a457cb71984f58cdd8ba6de24a8f33a93b9bdd95 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#ifndef __ARM_MMU_H
#define __ARM_MMU_H

typedef struct {
#if __LINUX_ARM_ARCH__ >= 6
	unsigned int id;
#endif
} mm_context_t;

#if __LINUX_ARM_ARCH__ >= 6
#define ASID(mm)	((mm)->context.id & 255)
#else
#define ASID(mm)	(0)
#endif

#endif