From c7ba12ab9383ec7859bfa5a520990fdc61bed9c9 Mon Sep 17 00:00:00 2001 From: cgd Date: Thu, 12 Feb 1998 02:27:48 +0000 Subject: [PATCH] rename struct rob's "rpb" element to "rpb_phys" for clarity. also, change its type from a pointer to a never-defined structure to a u_int64_t. --- sys/arch/alpha/include/rpb.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sys/arch/alpha/include/rpb.h b/sys/arch/alpha/include/rpb.h index eccfcaf613cd..208d75e877d1 100644 --- a/sys/arch/alpha/include/rpb.h +++ b/sys/arch/alpha/include/rpb.h @@ -1,4 +1,4 @@ -/* $NetBSD: rpb.h,v 1.15 1998/01/29 22:28:52 ross Exp $ */ +/* $NetBSD: rpb.h,v 1.16 1998/02/12 02:27:48 cgd Exp $ */ /* * Copyright (c) 1994, 1995, 1996 Carnegie-Mellon University. @@ -39,7 +39,7 @@ #ifndef ASSEMBLER struct rpb { - struct restart_blk *rpb; /* 0: HWRPB phys. address. */ + u_int64_t rpb_phys; /* 0: HWRPB phys. address. */ char rpb_magic[8]; /* 8: "HWRPB" (in ASCII) */ u_int64_t rpb_version; /* 10 */ u_int64_t rpb_size; /* 18: HWRPB size in bytes */