Skip to content

Commit

Permalink
ACPI: static
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
Adrian Bunk authored and Len Brown committed Jul 3, 2007
1 parent ff55a9c commit 6c5cf8a
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions drivers/acpi/processor_throttling.c
Original file line number Diff line number Diff line change
Expand Up @@ -410,7 +410,8 @@ static int acpi_processor_get_throttling(struct acpi_processor *pr)
return pr->throttling.acpi_processor_get_throttling(pr);
}

int acpi_processor_set_throttling_fadt(struct acpi_processor *pr, int state)
static int acpi_processor_set_throttling_fadt(struct acpi_processor *pr,
int state)
{
u32 value = 0;
u32 duty_mask = 0;
Expand Down Expand Up @@ -482,7 +483,8 @@ int acpi_processor_set_throttling_fadt(struct acpi_processor *pr, int state)
return 0;
}

int acpi_processor_set_throttling_ptc(struct acpi_processor *pr, int state)
static int acpi_processor_set_throttling_ptc(struct acpi_processor *pr,
int state)
{
u32 value = 0;

Expand Down

0 comments on commit 6c5cf8a

Please sign in to comment.