Author: stepan
Date: 2009-04-23 00:55:15 +0200 (Thu, 23 Apr 2009)
New Revision: 4189

Modified:
   trunk/coreboot-v2/src/cpu/x86/smm/smihandler.c
Log:
makes the smi handler a little bit less verbose

Signed-off-by: Stefan Reinauer <[email protected]>
Acked-by: Stefan Reinauer <[email protected]>



Modified: trunk/coreboot-v2/src/cpu/x86/smm/smihandler.c
===================================================================
--- trunk/coreboot-v2/src/cpu/x86/smm/smihandler.c      2009-04-22 22:43:02 UTC 
(rev 4188)
+++ trunk/coreboot-v2/src/cpu/x86/smm/smihandler.c      2009-04-22 22:55:15 UTC 
(rev 4189)
@@ -174,7 +174,7 @@
        console_loglevel = 1;
 #endif
 
-       printk_debug("\nSMI# #%d\n", node);
+       printk_spew("\nSMI# #%d\n", node);
 
        switch (smm_revision) {
        case 0x00030007:
@@ -201,6 +201,10 @@
                return;
        }
 
+       /* Call chipset specific SMI handlers. This would be the place to
+        * add a CPU or northbridge specific SMI handler, too
+        */
+
        southbridge_smi_handler(node, &state_save);
 
        smi_release_lock();


-- 
coreboot mailing list: [email protected]
http://www.coreboot.org/mailman/listinfo/coreboot

Reply via email to