The patch titled acpi: remove duplicated warning message has been removed from the -mm tree. Its filename was acpi-remove-duplicated-warning-message.patch This patch was dropped because it was merged into mainline or a subsystem tree The current -mm tree may be found at http://userweb.kernel.org/~akpm/mmotm/ ------------------------------------------------------ Subject: acpi: remove duplicated warning message From: Miguel Botón <mboton@xxxxxxxxx> Remove duplicated warning message in acpi_power_transition() This warning message is printed by acpi_bus_set_power() so we don't need to print it again. Signed-off-by: Miguel Botón <mboton@xxxxxxxxx> Cc: Len Brown <lenb@xxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- drivers/acpi/power.c | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff -puN drivers/acpi/power.c~acpi-remove-duplicated-warning-message drivers/acpi/power.c --- a/drivers/acpi/power.c~acpi-remove-duplicated-warning-message +++ a/drivers/acpi/power.c @@ -458,11 +458,9 @@ int acpi_power_transition(struct acpi_de } end: - if (result) { + if (result) device->power.state = ACPI_STATE_UNKNOWN; - printk(KERN_WARNING PREFIX "Transitioning device [%s] to D%d\n", - device->pnp.bus_id, state); - } else { + else { /* We shouldn't change the state till all above operations succeed */ device->power.state = state; } _ Patches currently in -mm which might be from mboton@xxxxxxxxx are origin.patch memstick-initial-commit-for-sony-memorystick-support-fix.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