diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2012-06-26 16:19:03 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2012-06-26 16:19:03 +0000 |
commit | 8a00a0d61b93cfb29f7c922d228cd6e834b7a3bf (patch) | |
tree | f2225e498a79bdb2d0b7cce46f458ec9f2e1199f /sys/arch/alpha | |
parent | c9163dc9e49a982b316a7948eeff53932a59cb0d (diff) |
ALPHA_PGSHIFT -> PGSHIFT.
Diffstat (limited to 'sys/arch/alpha')
-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. |