repository service wrote: > +++ trunk/src/cpu/x86/smm/smihandler.c Mon Feb 22 10:32:33 2010 > (r5141) .. > @@ -145,8 +146,12 @@ > /* 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); > + if (cpu_smi_handler) > + cpu_smi_handler(node, &state_save); > + if (northbridge_smi_handler) > + northbridge_smi_handler(node, &state_save); > + if (southbridge_smi_handler) > + southbridge_smi_handler(node, &state_save);
Should the comment above be touched too? //Peter -- coreboot mailing list: [email protected] http://www.coreboot.org/mailman/listinfo/coreboot

