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:
parent
8c318cf9a1
commit
9e81887e75
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue