* include/grub/i386/time.h: use "void" in the argument list
of grub_cpu_idle(). * include/grub/powerpc/time.h: Likewise. * include/grub/sparc64/time.h: Likewise.
This commit is contained in:
parent
68f6ac74e2
commit
7361cfe62e
4 changed files with 10 additions and 3 deletions
|
@ -1,3 +1,10 @@
|
|||
2007-11-24 Pavel Roskin <proski@gnu.org>
|
||||
|
||||
* include/grub/i386/time.h: use "void" in the argument list
|
||||
of grub_cpu_idle().
|
||||
* include/grub/powerpc/time.h: Likewise.
|
||||
* include/grub/sparc64/time.h: Likewise.
|
||||
|
||||
2007-11-18 Christian Franke <franke@computer.org>
|
||||
|
||||
* util/console.c (grub_ncurses_getkey): Change curses KEY_* mapping,
|
||||
|
|
|
@ -20,7 +20,7 @@
|
|||
#define KERNEL_CPU_TIME_HEADER 1
|
||||
|
||||
static __inline void
|
||||
grub_cpu_idle ()
|
||||
grub_cpu_idle (void)
|
||||
{
|
||||
/* FIXME: this can't work untill we handle interrupts. */
|
||||
/* __asm__ __volatile__ ("hlt"); */
|
||||
|
|
|
@ -20,7 +20,7 @@
|
|||
#define KERNEL_CPU_TIME_HEADER 1
|
||||
|
||||
static __inline void
|
||||
grub_cpu_idle ()
|
||||
grub_cpu_idle (void)
|
||||
{
|
||||
/* FIXME: not implemented */
|
||||
}
|
||||
|
|
|
@ -20,7 +20,7 @@
|
|||
#define KERNEL_CPU_TIME_HEADER 1
|
||||
|
||||
static __inline void
|
||||
grub_cpu_idle ()
|
||||
grub_cpu_idle (void)
|
||||
{
|
||||
/* FIXME: not implemented */
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue