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

Commit 2985709d authored by Tim Abbott's avatar Tim Abbott Committed by Greg Ungerer
Browse files

m68knommu: Make PAGE_SIZE available to assembly files.



Signed-off-by: default avatarTim Abbott <tabbott@ksplice.com>
Signed-off-by: default avatarGreg Ungerer <gerg@uclinux.org>
parent 2756730b
Loading
Loading
Loading
Loading
+3 −1
Original line number Original line Diff line number Diff line
#ifndef _M68KNOMMU_PAGE_H
#ifndef _M68KNOMMU_PAGE_H
#define _M68KNOMMU_PAGE_H
#define _M68KNOMMU_PAGE_H


#include <linux/const.h>

/* PAGE_SHIFT determines the page size */
/* PAGE_SHIFT determines the page size */


#define PAGE_SHIFT	(12)
#define PAGE_SHIFT	(12)
#define PAGE_SIZE	(1UL << PAGE_SHIFT)
#define PAGE_SIZE	(_AC(1,UL) << PAGE_SHIFT)
#define PAGE_MASK	(~(PAGE_SIZE-1))
#define PAGE_MASK	(~(PAGE_SIZE-1))


#include <asm/setup.h>
#include <asm/setup.h>