makes the smi handler a little bit less verbose
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
This commit is contained in:
parent
d6196a494c
commit
554fce6ced
|
@ -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();
|
||||
|
|
Loading…
Reference in New Issue