The patch titled
     drivers/edac: fix printk level down to debug from emerg
has been removed from the -mm tree.  Its filename was
     drivers-edac-fix-printk-level-down-to-debug-from-emerg.patch

This patch was dropped because it was merged into mainline or a subsystem tree

------------------------------------------------------
Subject: drivers/edac: fix printk level down to debug from emerg
From: Doug Thompson <[EMAIL PROTECTED]>

When EDAC is configured for EDAC DEBUGGING, the debug printk output level
was set TOO high (EMERG). This patch brings it down to a DEBUG level

Signed-off-by: Doug Thompson <[EMAIL PROTECTED]>
Cc: Alan Cox <[EMAIL PROTECTED]>
Signed-off-by: Andrew Morton <[EMAIL PROTECTED]>
---

 drivers/edac/edac_core.h |    2 +-
 1 files changed, 1 insertion(+), 1 deletion(-)

diff -puN 
drivers/edac/edac_core.h~drivers-edac-fix-printk-level-down-to-debug-from-emerg 
drivers/edac/edac_core.h
--- 
a/drivers/edac/edac_core.h~drivers-edac-fix-printk-level-down-to-debug-from-emerg
+++ a/drivers/edac/edac_core.h
@@ -75,7 +75,7 @@ extern int edac_debug_level;
 #define edac_debug_printk(level, fmt, arg...)                            \
        do {                                                             \
                if (level <= edac_debug_level)                           \
-                       edac_printk(KERN_EMERG, EDAC_DEBUG, fmt, ##arg); \
+                       edac_printk(KERN_DEBUG, EDAC_DEBUG, fmt, ##arg); \
        } while(0)
 
 #define debugf0( ... ) edac_debug_printk(0, __VA_ARGS__ )
_

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

origin.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