Displaying 1 result from an estimated 1 matches for "boot_cfg".
Did you mean:
boot0cfg
2012 Mar 27
0
[PATCH 1/4] x86/hpet: disable before reboot or kexec
...t.c
+++ b/xen/arch/x86/hpet.c
@@ -566,7 +566,7 @@ void hpet_broadcast_resume(void)
if ( !hpet_events )
return;
- hpet_resume();
+ hpet_resume(NULL);
cfg = hpet_read32(HPET_CFG);
@@ -704,10 +704,13 @@ int hpet_legacy_irq_tick(void)
return 1;
}
+static u32 *hpet_boot_cfg;
+
u64 __init hpet_setup(void)
{
static u64 __initdata hpet_rate;
u32 hpet_id, hpet_period;
+ unsigned int last;
if ( hpet_rate )
return hpet_rate;
@@ -732,7 +735,9 @@ u64 __init hpet_setup(void)
return 0;
}
- hpet_resume();
+ last = (hpet_id &am...