limits.h: Include page.h when relying on PAGE_SIZE
limits.h relies on PAGE_SIZE being defined without actually including page.h. Make sure this is included to avoid compilation failures. Signed-off-by: Arun Raghavan <arun.raghavan@collabora.co.uk>
This commit is contained in:
parent
5af97ca851
commit
6331db3fd2
|
@ -90,6 +90,7 @@
|
|||
#endif
|
||||
|
||||
#ifndef PAGESIZE
|
||||
#include <asm/page.h>
|
||||
#define PAGESIZE PAGE_SIZE
|
||||
#endif
|
||||
|
||||
|
|
Loading…
Reference in New Issue