The patch titled
     pnpacpi: print resource shortage message only once (more)
has been removed from the -mm tree.  Its filename was
     pnpacpi-print-resource-shortage-message-only-once-more.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: pnpacpi: print resource shortage message only once (more)
From: Len Brown <[EMAIL PROTECTED]>

Wups, previous patch was ineffective in 2 cases.

http://bugzilla.kernel.org/show_bug.cgi?id=9535

Signed-off-by: Len Brown <[EMAIL PROTECTED]>
Reported-by: "Hartkopp, Oliver (K-EFE/E)" <[EMAIL PROTECTED]>
Signed-off-by: Andrew Morton <[EMAIL PROTECTED]>
---

 drivers/pnp/pnpacpi/rsparser.c |    2 ++
 1 file changed, 2 insertions(+)

diff -puN 
drivers/pnp/pnpacpi/rsparser.c~pnpacpi-print-resource-shortage-message-only-once-more
 drivers/pnp/pnpacpi/rsparser.c
--- 
a/drivers/pnp/pnpacpi/rsparser.c~pnpacpi-print-resource-shortage-message-only-once-more
+++ a/drivers/pnp/pnpacpi/rsparser.c
@@ -215,6 +215,7 @@ static void pnpacpi_parse_allocated_iore
        } else if (!warned) {
                printk(KERN_ERR "pnpacpi: exceeded the max number of IO "
                                "resources: %d \n", PNP_MAX_PORT);
+               warned = 1;
        }
 }
 
@@ -242,6 +243,7 @@ static void pnpacpi_parse_allocated_memr
        } else if (!warned) {
                printk(KERN_ERR "pnpacpi: exceeded the max number of mem "
                                "resources: %d\n", PNP_MAX_MEM);
+               warned = 1;
        }
 }
 
_

Patches currently in -mm which might be from [EMAIL PROTECTED] are

origin.patch
git-acpi.patch
git-libata-all.patch
git-x86.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

Reply via email to