Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 1d0bbf42 authored by Russell King's avatar Russell King
Browse files

ARM: Fix the world famous typo with is_gate_vma()

parent 8c0cc8a5
Loading
Loading
Loading
Loading
+1 −1
Original line number Original line Diff line number Diff line
@@ -459,7 +459,7 @@ int in_gate_area_no_mm(unsigned long addr)
{
{
	return in_gate_area(NULL, addr);
	return in_gate_area(NULL, addr);
}
}
#define is_gate_vma(vma)	((vma) = &gate_vma)
#define is_gate_vma(vma)	((vma) == &gate_vma)
#else
#else
#define is_gate_vma(vma)	0
#define is_gate_vma(vma)	0
#endif
#endif