makes the smi handler a little bit less verbose
authorStefan Reinauer <stepan@coresystems.de>
Wed, 22 Apr 2009 22:55:15 +0000 (22:55 +0000)
committerStefan Reinauer <stepan@openbios.org>
Wed, 22 Apr 2009 22:55:15 +0000 (22:55 +0000)
Signed-off-by: Stefan Reinauer <stepan@coresystems.de>
Acked-by: Stefan Reinauer <stepan@coresystems.de>
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@4189 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1

src/cpu/x86/smm/smihandler.c

index 1ea9e1926e470f34900abb4cdbdd38f118192afe..858cf59bdf6c3490cd85e7e64efefc05ce1b139d 100644 (file)
@@ -174,7 +174,7 @@ void smi_handler(u32 smm_revision)
        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 @@ void smi_handler(u32 smm_revision)
                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();