2009-06-04 Vladimir Serbinenko <phcoder@gmail.com>
Remove nested functions in efiemu core * efiemu/runtime/efiemu.c (reflect): make static instead of nested
This commit is contained in:
parent
cc6c3ac1bf
commit
e8df1d4eb3
2 changed files with 22 additions and 16 deletions
|
@ -1,3 +1,9 @@
|
||||||
|
2009-06-04 Vladimir Serbinenko <phcoder@gmail.com>
|
||||||
|
|
||||||
|
Remove nested functions in efiemu core
|
||||||
|
|
||||||
|
* efiemu/runtime/efiemu.c (reflect): make static instead of nested
|
||||||
|
|
||||||
2009-06-04 Vladimir Serbinenko <phcoder@gmail.com>
|
2009-06-04 Vladimir Serbinenko <phcoder@gmail.com>
|
||||||
|
|
||||||
Avoid clobbering %ebx/%rbx in inline assembly with Apple's CC
|
Avoid clobbering %ebx/%rbx in inline assembly with Apple's CC
|
||||||
|
|
|
@ -271,12 +271,9 @@ EFI_FUNC (efiemu_set_wakeup_time) (grub_efi_boolean_t enabled,
|
||||||
|
|
||||||
static grub_uint32_t crc32_table [256];
|
static grub_uint32_t crc32_table [256];
|
||||||
|
|
||||||
static void
|
static grub_uint32_t
|
||||||
init_crc32_table (void)
|
reflect (grub_uint32_t ref, int len)
|
||||||
{
|
{
|
||||||
auto grub_uint32_t reflect (grub_uint32_t ref, int len);
|
|
||||||
grub_uint32_t reflect (grub_uint32_t ref, int len)
|
|
||||||
{
|
|
||||||
grub_uint32_t result = 0;
|
grub_uint32_t result = 0;
|
||||||
int i;
|
int i;
|
||||||
|
|
||||||
|
@ -288,8 +285,11 @@ init_crc32_table (void)
|
||||||
}
|
}
|
||||||
|
|
||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static void
|
||||||
|
init_crc32_table (void)
|
||||||
|
{
|
||||||
grub_uint32_t polynomial = 0x04c11db7;
|
grub_uint32_t polynomial = 0x04c11db7;
|
||||||
int i, j;
|
int i, j;
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue