The patch titled
acpi: remove duplicated warning message
has been added to the -mm tree. Its filename is
acpi-remove-duplicated-warning-message.patch
*** Remember to use Documentation/SubmitChecklist when testing your code ***
See http://www.zip.com.au/~akpm/linux/patches/stuff/added-to-mm.txt to find
out what to do about this
------------------------------------------------------
Subject: acpi: remove duplicated warning message
From: Miguel Botón <[EMAIL PROTECTED]
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 <[EMAIL PROTECTED]
Cc: Len Brown <[EMAIL PROTECTED]>
Signed-off-by: Andrew Morton <[EMAIL PROTECTED]>
---
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 [EMAIL PROTECTED] are
sparsemem-make-sparsemem_vmemmap-selectable.patch
acpi-remove-duplicated-warning-message.patch
git-netdev-all.patch
-
To unsubscribe from this list: send the line "unsubscribe mm-commits" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at http://vger.kernel.org/majordomo-info.html