changed rate of pseudo-clockk to avoid USB stalls
This commit is contained in:
parent
1e4f46c162
commit
81d1980198
1 changed files with 3 additions and 2 deletions
|
@ -15,8 +15,9 @@
|
|||
grub_uint32_t
|
||||
grub_get_rtc (void)
|
||||
{
|
||||
static int calln = 0;
|
||||
return calln++;
|
||||
static grub_uint64_t calln = 0;
|
||||
|
||||
return (calln++) >> 8;
|
||||
}
|
||||
|
||||
void
|
||||
|
|
Loading…
Reference in a new issue