The patch titled acpi_pmc-check-for-monotonicity cleanup has been removed from the -mm tree. Its filename was acpi_pmc-check-for-monotonicity-cleanup.patch This patch was dropped because it is obsolete The current -mm tree may be found at http://userweb.kernel.org/~akpm/mmotm/ ------------------------------------------------------ Subject: acpi_pmc-check-for-monotonicity cleanup From: Dominik Brodowski <linux@xxxxxxxxxxxxxxxxxxxx> Signed-off-by: Dominik Brodowski <linux@xxxxxxxxxxxxxxxxxxxx> Cc: John Stultz <johnstul@xxxxxxxxxx> Cc: Thomas Gleixner <tglx@xxxxxxxxxxxxx> Cc: Ingo Molnar <mingo@xxxxxxx> Cc: Andreas Mohr <andi@xxxxxxxx> Cc: Andi Kleen <andi@xxxxxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- drivers/clocksource/acpi_pm.c | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff -puN drivers/clocksource/acpi_pm.c~acpi_pmc-check-for-monotonicity-cleanup drivers/clocksource/acpi_pm.c --- a/drivers/clocksource/acpi_pm.c~acpi_pmc-check-for-monotonicity-cleanup +++ a/drivers/clocksource/acpi_pm.c @@ -175,6 +175,9 @@ static int verify_pmtmr_rate(void) #define verify_pmtmr_rate() (0) #endif +/* Number of monotonicity checks to perform during initialization */ +#define ACPI_PM_MONOTONICITY_CHECKS 10 + static int __init init_acpi_pm_clocksource(void) { cycle_t value1, value2; @@ -187,7 +190,7 @@ static int __init init_acpi_pm_clocksour clocksource_acpi_pm.shift); /* "verify" this timing source: */ - for (j = 0; j < 10; j++) { + for (j = 0; j < ACPI_PM_MONOTONICITY_CHECKS; j++) { value1 = clocksource_acpi_pm.read(); for (i = 0; i < 10000; i++) { value2 = clocksource_acpi_pm.read(); @@ -207,9 +210,9 @@ static int __init init_acpi_pm_clocksour udelay(300 * i); } - if (good != 10) { - printk(KERN_INFO "PM-Timer had no reasonable result:" - " 0x%#llx - aborting.\n", value1); + if (good != ACPI_PM_MONOTONICITY_CHECKS) { + printk(KERN_INFO "PM-Timer failed consistency check " + " (0x%#llx) - aborting.\n", value1); return -ENODEV; } _ Patches currently in -mm which might be from linux@xxxxxxxxxxxxxxxxxxxx are linux-next.patch pcmcia-pccard-deadlock-fix.patch acpi_pmc-check-for-monotonicity-cleanup.patch make-sure-nobodys-leaking-resources.patch -- To unsubscribe from this list: send the line "unsubscribe mm-commits" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html