From 45983912675c30f2e364890e5291bf433c6c6aa3 Mon Sep 17 00:00:00 2001 From: sekiya Date: Tue, 13 Jan 2004 14:18:56 +0000 Subject: [PATCH] The watchdog timer is a function of the memory controller on all SGI platforms. Add to the machine struct. --- sys/arch/sgimips/include/sysconf.h | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/sys/arch/sgimips/include/sysconf.h b/sys/arch/sgimips/include/sysconf.h index 0edcd6f2e7ba..72b93b5012d1 100644 --- a/sys/arch/sgimips/include/sysconf.h +++ b/sys/arch/sgimips/include/sysconf.h @@ -1,4 +1,4 @@ -/* $NetBSD: sysconf.h,v 1.3 2001/11/11 17:21:40 rafal Exp $ */ +/* $NetBSD: sysconf.h,v 1.4 2004/01/13 14:18:56 sekiya Exp $ */ /* * Copyright (c) 1996 Christopher G. Demetriou. All rights reserved. @@ -68,7 +68,8 @@ struct platform { void (*cons_init)(void); void (*iointr)(unsigned, unsigned, unsigned, unsigned); void (*intr_establish)(int , int, int (*)(void *), void *); - unsigned long (*clkread) __P((void)); + unsigned long (*clkread) (void); + void (*watchdog_reset)(void); }; extern struct platform platform;