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

ACPI: static

make 2 needlessly global functions static.

Signed-off-by: Adrian Bunk <bunk@stusta.de>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Len Brown <len.brown@intel.com>

authored by

Adrian Bunk and committed by
Len Brown
6c5cf8aa ff55a9ce

+4 -2
+4 -2
drivers/acpi/processor_throttling.c
··· 410 410 return pr->throttling.acpi_processor_get_throttling(pr); 411 411 } 412 412 413 - int acpi_processor_set_throttling_fadt(struct acpi_processor *pr, int state) 413 + static int acpi_processor_set_throttling_fadt(struct acpi_processor *pr, 414 + int state) 414 415 { 415 416 u32 value = 0; 416 417 u32 duty_mask = 0; ··· 483 482 return 0; 484 483 } 485 484 486 - int acpi_processor_set_throttling_ptc(struct acpi_processor *pr, int state) 485 + static int acpi_processor_set_throttling_ptc(struct acpi_processor *pr, 486 + int state) 487 487 { 488 488 u32 value = 0; 489 489