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

Commit 8da54a0b authored by Nicolas Pitre's avatar Nicolas Pitre Committed by Nicolas Pitre
Browse files

ARM: mach-prima2: don't define SIRFSOC_VA in terms of VMALLOC_END



... since it is going to change.

Signed-off-by: default avatarNicolas Pitre <nicolas.pitre@linaro.org>
Tested-by: default avatarBarry Song <baohua.song@csr.com>
parent 1a4c1c96
Loading
Loading
Loading
Loading
+4 −2
Original line number Diff line number Diff line
@@ -9,8 +9,10 @@
#ifndef __MACH_PRIMA2_MAP_H__
#define __MACH_PRIMA2_MAP_H__

#include <mach/vmalloc.h>
#include <linux/const.h>

#define SIRFSOC_VA(x)			(VMALLOC_END + ((x) & 0x00FFF000))
#define SIRFSOC_VA_BASE		_AC(0xFEC00000, UL)

#define SIRFSOC_VA(x)		(SIRFSOC_VA_BASE + ((x) & 0x00FFF000))

#endif