mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2024-10-29 23:53:32 +00:00
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>
This commit is contained in:
parent
a38fd87484
commit
41103b3bbe
1 changed files with 1 additions and 1 deletions
|
@ -459,7 +459,7 @@ int acpi_processor_pstate_control(void)
|
||||||
|
|
||||||
int acpi_processor_notify_smm(struct module *calling_module)
|
int acpi_processor_notify_smm(struct module *calling_module)
|
||||||
{
|
{
|
||||||
static int is_done = 0;
|
static int is_done;
|
||||||
int result;
|
int result;
|
||||||
|
|
||||||
if (!acpi_processor_cpufreq_init)
|
if (!acpi_processor_cpufreq_init)
|
||||||
|
|
Loading…
Reference in a new issue