2005-01-03 Hollis Blanchard <hollis@penguinppc.org>

* boot/powerpc/ieee1275/ieee1275.c (grub_ieee1275_milliseconds):
	New function.
	* include/grub/powerpc/ieee1275/ieee1275.h
	(grub_ieee1275_milliseconds): New prototype.
	* include/grub/powerpc/ieee1275/time.h (GRUB_TICKS_PER_SECOND):
	Change to 1000.
	* kern/powerpc/ieee1275/init.c (grub_get_rtc): Call
	grub_ieee1275_milliseconds.
This commit is contained in:
hollisb 2005-01-03 21:48:45 +00:00
parent ac507d1ba2
commit 458786f8fc
5 changed files with 38 additions and 5 deletions

View file

@ -1,7 +1,7 @@
/* init.c -- Initialize GRUB on the newworld mac (PPC). */
/*
* GRUB -- GRand Unified Bootloader
* Copyright (C) 2003, 2004 Free Software Foundation, Inc.
* Copyright (C) 2003, 2004,2005 Free Software Foundation, Inc.
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
@ -82,5 +82,10 @@ grub_stop (void)
grub_uint32_t
grub_get_rtc (void)
{
return 0;
grub_uint32_t msecs;
if (grub_ieee1275_milliseconds (&msecs))
return 0;
return msecs;
}