Staging
v0.8.1
https://github.com/torvalds/linux
Raw File
Tip revision: 899e3ee404961a90b828ad527573aaaac39f0ab1 authored by Linus Torvalds on 18 October 2011, 04:06:23 UTC
Linux 3.1-rc10
Tip revision: 899e3ee
sparsemem.h
#ifndef __ASM_SH_SPARSEMEM_H
#define __ASM_SH_SPARSEMEM_H

#ifdef __KERNEL__
/*
 * SECTION_SIZE_BITS		2^N: how big each section will be
 * MAX_PHYSADDR_BITS		2^N: how much physical address space we have
 * MAX_PHYSMEM_BITS		2^N: how much memory we can have in that space
 */
#define SECTION_SIZE_BITS	26
#define MAX_PHYSADDR_BITS	32
#define MAX_PHYSMEM_BITS	32

#endif

#endif /* __ASM_SH_SPARSEMEM_H */
back to top