Skip to content

Commit

Permalink
ACPI: delete acpi_processor_power_verify_c2()
Browse files Browse the repository at this point in the history
no functional change -- cleanup only.

acpi_processor_power_verify_c2() was nearly empty due to a previous patch,
so expand its remains into its one caller and delete it.

Signed-off-by: Len Brown <len.brown@intel.com>
  • Loading branch information
Len Brown committed Jan 20, 2010
1 parent a6d72c1 commit d22edd2
Showing 1 changed file with 4 additions and 18 deletions.
22 changes: 4 additions & 18 deletions drivers/acpi/processor_idle.c
Original file line number Diff line number Diff line change
Expand Up @@ -516,23 +516,6 @@ static int acpi_processor_get_power_info_cst(struct acpi_processor *pr)
return status;
}

static void acpi_processor_power_verify_c2(struct acpi_processor_cx *cx)
{

if (!cx->address)
return;

/*
* Otherwise we've met all of our C2 requirements.
* Normalize the C2 latency to expidite policy
*/
cx->valid = 1;

cx->latency_ticks = cx->latency;

return;
}

static void acpi_processor_power_verify_c3(struct acpi_processor *pr,
struct acpi_processor_cx *cx)
{
Expand Down Expand Up @@ -631,7 +614,10 @@ static int acpi_processor_power_verify(struct acpi_processor *pr)
break;

case ACPI_STATE_C2:
acpi_processor_power_verify_c2(cx);
if (!cx->address)
break;
cx->valid = 1;
cx->latency_ticks = cx->latency; /* Normalize latency */
break;

case ACPI_STATE_C3:
Expand Down

0 comments on commit d22edd2

Please sign in to comment.