diff options
author | 2012-06-26 16:19:02 +0000 | |
---|---|---|
committer | 2012-06-26 16:19:02 +0000 | |
commit | 8b224b957cc264b10bab91cadbf1fdfaa1f6cf3f (patch) | |
tree | 69672269572eb05b39d310047248a04295beda04 | |
parent | do not assume that sys/param.h is pulling in the world; pull in what is (diff) | |
download | wireguard-openbsd-8b224b957cc264b10bab91cadbf1fdfaa1f6cf3f.tar.xz wireguard-openbsd-8b224b957cc264b10bab91cadbf1fdfaa1f6cf3f.zip |
ALPHA_PGSHIFT -> PGSHIFT.
-rw-r--r-- | sys/arch/alpha/stand/loadfile_subr.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/alpha/stand/loadfile_subr.c b/sys/arch/alpha/stand/loadfile_subr.c index 40f764e70e6..b70fa8bf16f 100644 --- a/sys/arch/alpha/stand/loadfile_subr.c +++ b/sys/arch/alpha/stand/loadfile_subr.c @@ -1,4 +1,4 @@ -/* $OpenBSD: loadfile_subr.c,v 1.1 2011/06/06 04:09:42 miod Exp $ */ +/* $OpenBSD: loadfile_subr.c,v 1.2 2012/06/26 16:19:02 deraadt Exp $ */ /* * Copyright (c) 2010 Miodrag Vallat. @@ -26,7 +26,7 @@ #include <machine/alpha_cpu.h> #include <machine/rpb.h> -#define ptoa(a) ((a) << ALPHA_PGSHIFT) +#define ptoa(a) ((a) << PGSHIFT) /* * Prevent loading a kernel if it would overlap the SRM. |