On 2/22/10 1:25 PM, Peter Stuge wrote:
> 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?
>
>   
Absolutely! Thanks for the hint. Fixed in r5145.

Stefan


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

Reply via email to