blob: 5d6477e5992691f03f2206f921c836a14505c749 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#ifndef __ARM_PAGE_SHIFT_H__
#define __ARM_PAGE_SHIFT_H__
#define PAGE_SHIFT 12
#ifdef CONFIG_ARM_64
#define PADDR_BITS 48
#else
#define PADDR_BITS 40
#endif
#endif /* __ARM_PAGE_SHIFT_H__ */
|