From eadf88cc610af87c79339ccda6ca4a62d3407e29 Mon Sep 17 00:00:00 2001 From: thorpej Date: Tue, 5 Jun 2001 05:20:20 +0000 Subject: [PATCH] (locally defined) HZ -> hz --- sys/arch/sun3/dev/eeprom.c | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/sys/arch/sun3/dev/eeprom.c b/sys/arch/sun3/dev/eeprom.c index 688b82e93c5e..02a3d8010a8a 100644 --- a/sys/arch/sun3/dev/eeprom.c +++ b/sys/arch/sun3/dev/eeprom.c @@ -1,4 +1,4 @@ -/* $NetBSD: eeprom.c,v 1.19 2001/05/27 06:19:39 chs Exp $ */ +/* $NetBSD: eeprom.c,v 1.20 2001/06/05 05:20:20 thorpej Exp $ */ /*- * Copyright (c) 1996 The NetBSD Foundation, Inc. @@ -51,13 +51,12 @@ #include #include #include +#include #include #include #include -#define HZ 100 /* XXX */ - #ifndef EEPROM_SIZE #define EEPROM_SIZE 0x800 #endif @@ -248,7 +247,7 @@ ee_update(int off, int cnt) * holding the lock to prevent all access to * the EEPROM while it recovers. */ - (void)tsleep(eeprom_va, PZERO-1, "eeprom", HZ/50); + (void)tsleep(eeprom_va, PZERO-1, "eeprom", hz/50); } /* Make sure the write worked. */ if (*ep != *bp)