diff options
author | Timothy Pearson <tpearson@raptorengineeringinc.com> | 2015-09-07 15:55:50 -0500 |
---|---|---|
committer | Alexandru Gagniuc <mr.nuke.me@gmail.com> | 2015-09-07 23:07:44 +0000 |
commit | 8ac492999a57aa112fbcc063c6e0689d2c5d4776 (patch) | |
tree | 237d439560295d84aeffe67e5fec367e6fc359e3 /src | |
parent | 2e4f83b164d2013e0ed856d8771a00993d1c403e (diff) | |
download | coreboot-8ac492999a57aa112fbcc063c6e0689d2c5d4776.tar.xz |
northbridge/amd/amdfam10: Use adequate size for HT speed limit field
Change-Id: Ib7ca49ffd53b0ae98a592b9fe8949dee2d9ae100
Signed-off-by: Timothy Pearson <tpearson@raptorengineeringinc.com>
Reviewed-on: http://review.coreboot.org/11587
Tested-by: build bot (Jenkins)
Reviewed-by: Alexandru Gagniuc <mr.nuke.me@gmail.com>
Tested-by: Raptor Engineering Automated Test Stand <noreply@raptorengineeringinc.com>
Diffstat (limited to 'src')
-rw-r--r-- | src/northbridge/amd/amdfam10/amdfam10.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/northbridge/amd/amdfam10/amdfam10.h b/src/northbridge/amd/amdfam10/amdfam10.h index 94613856f4..a1e08a0b1f 100644 --- a/src/northbridge/amd/amdfam10/amdfam10.h +++ b/src/northbridge/amd/amdfam10/amdfam10.h @@ -1005,7 +1005,7 @@ struct nodes_info_t { } __attribute__((packed)); struct ht_link_config { - uint8_t ht_speed_limit; // Speed in MHz; 0 for autodetect (default) + uint32_t ht_speed_limit; // Speed in MHz; 0 for autodetect (default) }; /* be careful with the alignment of sysinfo, bacause sysinfo may be shared by coreboot_car and ramstage stage. and ramstage may be running at 64bit later.*/ |