diff options
author | Ralf Baechle <ralf@linux-mips.org> | 1998-07-10 01:14:47 +0000 |
---|---|---|
committer | Ralf Baechle <ralf@linux-mips.org> | 1998-07-10 01:14:47 +0000 |
commit | cf00b9f677c32c4f0ad187bed33e7bf2209db3b8 (patch) | |
tree | 6091370501637f7d42c529bc35454aa0719f35d6 /include/asm-mips/sgialib.h | |
parent | 683c16eb00d32d749c1038f5fd9032d8543e5697 (diff) |
o Support for the front panel on the Indy. The panel work now as a
user would expect it to work, like under IRIX with the exception
that the machine doesn't freeze solid as long as the button is
pressed.
o Realtime clock driver (CONFIG_SGI_DS1286) for the Indy. Includes
/proc/rtc interface which tells you everything about your RTC which
you never wanted to know. You have to configure this driver into
your kernel or you won't be able to set your RTC.
o Some cleanup of the RTC interfaces in Linux, RTC does no longer mean
PC-style RTC. The userland interface definitions are now in
<linux/rtc.h>. We still need some more cleanup until we can enable
several RTC drivers.
o Virtual aliasing fixes for ptrace(2).
o Add ptrace(2) interface definitions needed to build GDB to
<asm/ptrace.h>.
o Revert to some older routines, the newer optimized ones are buggy.
o On panic the Indy LED will be blinking fast crying to the admin
passing by [music from Rocky Horror show] ``fix me, fix me, fix
me''.
o On panic the power button will only reboot the machine, not power it
down. That's probably more what people want it to do.
o Remove some old files.
o Did I tell you that CVS is buggy?
Diffstat (limited to 'include/asm-mips/sgialib.h')
-rw-r--r-- | include/asm-mips/sgialib.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/include/asm-mips/sgialib.h b/include/asm-mips/sgialib.h index 45ac539d4..9102be1d8 100644 --- a/include/asm-mips/sgialib.h +++ b/include/asm-mips/sgialib.h @@ -1,4 +1,4 @@ -/* $Id: sgialib.h,v 1.7 1996/06/08 06:05:15 dm Exp $ +/* $Id: sgialib.h,v 1.2 1998/07/08 16:01:13 ralf Exp $ * sgialib.h: SGI ARCS firmware interface library for the Linux kernel. * * Copyright (C) 1996 David S. Miller (dm@engr.sgi.com) @@ -106,11 +106,11 @@ extern long prom_invoke(unsigned long pc, unsigned long sp, long argc, char **ar extern long prom_exec(char *name, long argc, char **argv, char **envp); /* Misc. routines. */ -extern void prom_halt(void); -extern void prom_powerdown(void); -extern void prom_restart(void); -extern void prom_reboot(void); -extern void prom_imode(void); +extern void prom_halt(void) __attribute__((noreturn)); +extern void prom_powerdown(void) __attribute__((noreturn)); +extern void prom_restart(void) __attribute__((noreturn)); +extern void prom_reboot(void) __attribute__((noreturn)); +extern void prom_imode(void) __attribute__((noreturn)); extern long prom_cfgsave(void); extern struct linux_sysid *prom_getsysid(void); extern void prom_cacheflush(void); |