From 7a77e181aa2375ba7d2f2929bc061e9652ea46f0 Mon Sep 17 00:00:00 2001 From: tsutsui Date: Tue, 8 Dec 2009 13:47:26 +0000 Subject: Use PGSHIFT from for PAGE_SHIFT. We can assume PGSHIFT is always constant on current m68k pmap_motorola implementation. Also fix some leftover HP300 comments on some ports. --- sys/arch/atari/include/vmparam.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'sys/arch/atari/include') diff --git a/sys/arch/atari/include/vmparam.h b/sys/arch/atari/include/vmparam.h index 78764c7637f..54de2b6f508 100644 --- a/sys/arch/atari/include/vmparam.h +++ b/sys/arch/atari/include/vmparam.h @@ -1,4 +1,4 @@ -/* $NetBSD: vmparam.h,v 1.25 2009/08/26 00:30:02 thorpej Exp $ */ +/* $NetBSD: vmparam.h,v 1.26 2009/12/08 13:47:26 tsutsui Exp $ */ /* * Copyright (c) 1982, 1986, 1990 The Regents of the University of California. @@ -82,14 +82,14 @@ #include /* - * Machine dependent constants for HP300 + * Machine dependent constants for atari */ /* * We use 8K pages on the Atari. Override the PAGE_* definitions * to be compile-time constants. */ -#define PAGE_SHIFT 13 +#define PAGE_SHIFT PGSHIFT #define PAGE_SIZE (1 << PAGE_SHIFT) #define PAGE_MASK (PAGE_SIZE - 1) -- cgit