[coreboot] [commit] r5141 - in trunk/src: cpu/x86/smm include/cpu/x86

Stefan Reinauer stepan at coresystems.de
Mon Feb 22 15:55:56 CET 2010


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





More information about the coreboot mailing list