diff options
author | Michael Shalayeff <mickey@cvs.openbsd.org> | 2002-02-12 06:42:27 +0000 |
---|---|---|
committer | Michael Shalayeff <mickey@cvs.openbsd.org> | 2002-02-12 06:42:27 +0000 |
commit | de1f5fb538c0d9aede1f8b74e8e3033d81cc8eb8 (patch) | |
tree | 0bbe2912d64799ce7f95701f1c49e10540d548d7 /sys/arch/hppa/include/autoconf.h | |
parent | 8d8c991cf0d879846a6732ca48f7952c9bd0a879 (diff) |
support 712's programmable power switch, no interrupt yet
Diffstat (limited to 'sys/arch/hppa/include/autoconf.h')
-rw-r--r-- | sys/arch/hppa/include/autoconf.h | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/sys/arch/hppa/include/autoconf.h b/sys/arch/hppa/include/autoconf.h index 392aa5788fa..06c9bcf905f 100644 --- a/sys/arch/hppa/include/autoconf.h +++ b/sys/arch/hppa/include/autoconf.h @@ -1,4 +1,4 @@ -/* $OpenBSD: autoconf.h,v 1.11 2001/12/02 04:03:57 mickey Exp $ */ +/* $OpenBSD: autoconf.h,v 1.12 2002/02/12 06:42:26 mickey Exp $ */ /* * Copyright (c) 1998 Michael Shalayeff @@ -58,6 +58,11 @@ struct hppa_mod_info { const char *mi_name; }; +extern void (*cold_hook) __P((int)); +#define HPPA_COLD_COLD 0 +#define HPPA_COLD_HOT 1 +#define HPPA_COLD_OFF 2 + struct device; const char *hppa_mod_info __P((int, int)); |