All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] Fix grub_cpu_idle() declaration
@ 2007-11-24  2:53 Pavel Roskin
  2007-12-06 11:50 ` Robert Millan
  0 siblings, 1 reply; 2+ messages in thread
From: Pavel Roskin @ 2007-11-24  2:53 UTC (permalink / raw)
  To: The development of GRUB 2

ChangeLog:

	* 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.

Index: include/grub/i386/time.h
===================================================================
RCS file: /cvsroot/grub/grub2/include/grub/i386/time.h,v
retrieving revision 1.2
diff -u -p -r1.2 time.h
--- include/grub/i386/time.h	5 Nov 2007 14:54:00 -0000	1.2
+++ include/grub/i386/time.h	24 Nov 2007 02:34:37 -0000
@@ -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"); */
Index: include/grub/powerpc/time.h
===================================================================
RCS file: /cvsroot/grub/grub2/include/grub/powerpc/time.h,v
retrieving revision 1.1
diff -u -p -r1.1 time.h
--- include/grub/powerpc/time.h	22 Oct 2007 20:02:16 -0000	1.1
+++ include/grub/powerpc/time.h	24 Nov 2007 02:34:37 -0000
@@ -20,7 +20,7 @@
 #define KERNEL_CPU_TIME_HEADER	1
 
 static __inline void
-grub_cpu_idle ()
+grub_cpu_idle (void)
 {
   /* FIXME: not implemented */
 }
Index: include/grub/sparc64/time.h
===================================================================
RCS file: /cvsroot/grub/grub2/include/grub/sparc64/time.h,v
retrieving revision 1.1
diff -u -p -r1.1 time.h
--- include/grub/sparc64/time.h	22 Oct 2007 20:02:16 -0000	1.1
+++ include/grub/sparc64/time.h	24 Nov 2007 02:34:37 -0000
@@ -20,7 +20,7 @@
 #define KERNEL_CPU_TIME_HEADER	1
 
 static __inline void
-grub_cpu_idle ()
+grub_cpu_idle (void)
 {
   /* FIXME: not implemented */
 }


-- 
Regards,
Pavel Roskin



^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2007-12-06 11:51 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2007-11-24  2:53 [PATCH] Fix grub_cpu_idle() declaration Pavel Roskin
2007-12-06 11:50 ` Robert Millan

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.