ACPI / processor: make function acpi_processor_check_duplicates() static
The function acpi_processor_check_duplicates() is local to the source and does not need to be in global scope, so make it static. Cleans up sparse warnings: symbol 'acpi_processor_check_duplicates' was not declared. Should it be static? Signed-off-by: Colin Ian King <colin.king@canonical.com> Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
This commit is contained in:
parent
512bb03f49
commit
0ed780e316
|
@ -670,7 +670,7 @@ err:
|
|||
|
||||
}
|
||||
|
||||
void __init acpi_processor_check_duplicates(void)
|
||||
static void __init acpi_processor_check_duplicates(void)
|
||||
{
|
||||
/* check the correctness for all processors in ACPI namespace */
|
||||
acpi_walk_namespace(ACPI_TYPE_PROCESSOR, ACPI_ROOT_OBJECT,
|
||||
|
|
Loading…
Reference in New Issue