vendorcode/amd/agesa/f15tn: Fix assembly bugs

Found missing '$' symbol on variable.

Change-Id: I748c315adc44598e16283f8e629be0ecfe9cb6a9
Signed-off-by: Damien Zammit <damien@zamaudio.com>
Reviewed-on: http://review.coreboot.org/7514
Tested-by: build bot (Jenkins)
Reviewed-by: Edward O'Callaghan <eocallaghan@alterapraxis.com>
This commit is contained in:
Damien Zammit 2014-11-19 00:20:08 +11:00 committed by Edward O'Callaghan
parent 8c318cf9a1
commit 9e81887e75
3 changed files with 3 additions and 3 deletions

View File

@ -361,7 +361,7 @@ fam10_enable_stack_hook_exit:
.macro AMD_DISABLE_STACK_FAMILY_HOOK_F10
LOCAL fam10_disable_stack_hook_exit
AMD_CPUID CPUID_MODEL
AMD_CPUID $CPUID_MODEL
shr $20, %eax # AL = cpu extended family
cmp $0x01, %al # Is this family 10h?
jnz fam10_disable_stack_hook_exit # Br if no

View File

@ -375,7 +375,7 @@ fam10_enable_stack_hook_exit:
.macro AMD_DISABLE_STACK_FAMILY_HOOK_F10
LOCAL fam10_disable_stack_hook_exit
AMD_CPUID CPUID_MODEL
AMD_CPUID $CPUID_MODEL
shr $20, %eax # AL = cpu extended family
cmp $0x01, %al # Is this family 10h?
jnz fam10_disable_stack_hook_exit # Br if no

View File

@ -416,7 +416,7 @@ fam10_enable_stack_hook_exit:
.macro AMD_DISABLE_STACK_FAMILY_HOOK_F10
LOCAL fam10_disable_stack_hook_exit
AMD_CPUID CPUID_MODEL
AMD_CPUID $CPUID_MODEL
shr $20, %eax # AL = cpu extended family
cmp $0x01, %al # Is this family 10h?
jnz fam10_disable_stack_hook_exit # Br if no