Message ID | 1342127026-1526-1-git-send-email-daniel.lezcano@linaro.org (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
On Thursday, July 12, 2012, Daniel Lezcano wrote: > Remove the latency_ticks field as it is not used. > > Signed-off-by: Daniel Lezcano <daniel.lezcano@linaro.org> This one looks good to me. Thanks, Rafael > --- > drivers/acpi/processor_idle.c | 2 -- > include/acpi/processor.h | 1 - > 2 files changed, 0 insertions(+), 3 deletions(-) > > diff --git a/drivers/acpi/processor_idle.c b/drivers/acpi/processor_idle.c > index f3decb3..da92c65 100644 > --- a/drivers/acpi/processor_idle.c > +++ b/drivers/acpi/processor_idle.c > @@ -586,7 +586,6 @@ static void acpi_processor_power_verify_c3(struct acpi_processor *pr, > */ > cx->valid = 1; > > - cx->latency_ticks = cx->latency; > /* > * On older chipsets, BM_RLD needs to be set > * in order for Bus Master activity to wake the > @@ -619,7 +618,6 @@ static int acpi_processor_power_verify(struct acpi_processor *pr) > if (!cx->address) > break; > cx->valid = 1; > - cx->latency_ticks = cx->latency; /* Normalize latency */ > break; > > case ACPI_STATE_C3: > diff --git a/include/acpi/processor.h b/include/acpi/processor.h > index 9d65047..a70cbcc 100644 > --- a/include/acpi/processor.h > +++ b/include/acpi/processor.h > @@ -59,7 +59,6 @@ struct acpi_processor_cx { > u8 entry_method; > u8 index; > u32 latency; > - u32 latency_ticks; > u32 power; > u32 usage; > u64 time; > -- To unsubscribe from this list: send the line "unsubscribe linux-acpi" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html
On Thursday, July 12, 2012, Daniel Lezcano wrote: > Remove the latency_ticks field as it is not used. > > Signed-off-by: Daniel Lezcano <daniel.lezcano@linaro.org> Applied to the 'pm-cpuidle' branch of the linux-pm.git tree. Thanks, Rafael > --- > drivers/acpi/processor_idle.c | 2 -- > include/acpi/processor.h | 1 - > 2 files changed, 0 insertions(+), 3 deletions(-) > > diff --git a/drivers/acpi/processor_idle.c b/drivers/acpi/processor_idle.c > index f3decb3..da92c65 100644 > --- a/drivers/acpi/processor_idle.c > +++ b/drivers/acpi/processor_idle.c > @@ -586,7 +586,6 @@ static void acpi_processor_power_verify_c3(struct acpi_processor *pr, > */ > cx->valid = 1; > > - cx->latency_ticks = cx->latency; > /* > * On older chipsets, BM_RLD needs to be set > * in order for Bus Master activity to wake the > @@ -619,7 +618,6 @@ static int acpi_processor_power_verify(struct acpi_processor *pr) > if (!cx->address) > break; > cx->valid = 1; > - cx->latency_ticks = cx->latency; /* Normalize latency */ > break; > > case ACPI_STATE_C3: > diff --git a/include/acpi/processor.h b/include/acpi/processor.h > index 9d65047..a70cbcc 100644 > --- a/include/acpi/processor.h > +++ b/include/acpi/processor.h > @@ -59,7 +59,6 @@ struct acpi_processor_cx { > u8 entry_method; > u8 index; > u32 latency; > - u32 latency_ticks; > u32 power; > u32 usage; > u64 time; > -- To unsubscribe from this list: send the line "unsubscribe linux-acpi" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html
diff --git a/drivers/acpi/processor_idle.c b/drivers/acpi/processor_idle.c index f3decb3..da92c65 100644 --- a/drivers/acpi/processor_idle.c +++ b/drivers/acpi/processor_idle.c @@ -586,7 +586,6 @@ static void acpi_processor_power_verify_c3(struct acpi_processor *pr, */ cx->valid = 1; - cx->latency_ticks = cx->latency; /* * On older chipsets, BM_RLD needs to be set * in order for Bus Master activity to wake the @@ -619,7 +618,6 @@ static int acpi_processor_power_verify(struct acpi_processor *pr) if (!cx->address) break; cx->valid = 1; - cx->latency_ticks = cx->latency; /* Normalize latency */ break; case ACPI_STATE_C3: diff --git a/include/acpi/processor.h b/include/acpi/processor.h index 9d65047..a70cbcc 100644 --- a/include/acpi/processor.h +++ b/include/acpi/processor.h @@ -59,7 +59,6 @@ struct acpi_processor_cx { u8 entry_method; u8 index; u32 latency; - u32 latency_ticks; u32 power; u32 usage; u64 time;
Remove the latency_ticks field as it is not used. Signed-off-by: Daniel Lezcano <daniel.lezcano@linaro.org> --- drivers/acpi/processor_idle.c | 2 -- include/acpi/processor.h | 1 - 2 files changed, 0 insertions(+), 3 deletions(-)