From: Stefano Stabellini Date: Wed, 21 Jul 2010 17:32:37 +0000 (+0100) Subject: x86: Do not try to disable hpet if it hasn't been initialized before X-Git-Tag: firefly_0821_release~10186^2~1367 X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=2d336114ea3e849673b1d61faef6e15688ea59b6;p=firefly-linux-kernel-4.4.55.git x86: Do not try to disable hpet if it hasn't been initialized before commit ff4878089e1eaeac79d57878ad4ea32910fb4037 upstream. hpet_disable is called unconditionally on machine reboot if hpet support is compiled in the kernel. hpet_disable only checks if the machine is hpet capable but doesn't make sure that hpet has been initialized. [ tglx: Made it a one liner and removed the redundant hpet_address check ] Signed-off-by: Stefano Stabellini Acked-by: Venkatesh Pallipadi LKML-Reference: Signed-off-by: Thomas Gleixner Signed-off-by: Greg Kroah-Hartman --- diff --git a/arch/x86/kernel/hpet.c b/arch/x86/kernel/hpet.c index 74f5a3ffab0c..19528ef10d31 100644 --- a/arch/x86/kernel/hpet.c +++ b/arch/x86/kernel/hpet.c @@ -949,7 +949,7 @@ fs_initcall(hpet_late_init); void hpet_disable(void) { - if (is_hpet_capable()) { + if (is_hpet_capable() && hpet_virt_address) { unsigned long cfg = hpet_readl(HPET_CFG); if (hpet_legacy_int_enabled) {