Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

ACPI: processor: Remove initialization of static variable

Address the following checkpatch error:

ERROR: do not initialise statics to false

Signed-off-by: Tian Tao <tiantao6@hisilicon.com>
[ rjw: Subject and changelog edits ]
Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>

authored by

Tian Tao and committed by
Rafael J. Wysocki
41103b3b a38fd874

+1 -1
+1 -1
drivers/acpi/processor_perflib.c
··· 459 459 460 460 int acpi_processor_notify_smm(struct module *calling_module) 461 461 { 462 - static int is_done = 0; 462 + static int is_done; 463 463 int result; 464 464 465 465 if (!acpi_processor_cpufreq_init)