diff options
author | Yinghai Lu <yinghailu@gmail.com> | 2004-12-22 19:02:41 +0000 |
---|---|---|
committer | Yinghai Lu <yinghailu@gmail.com> | 2004-12-22 19:02:41 +0000 |
commit | a804a713a23ec9662933f7452f1d3235f7a69474 (patch) | |
tree | 9e650024c09ddd9ff86329ef6a39ccf00330fa64 /src/northbridge/amd/amdk8 | |
parent | e2b2006406cb6b3013557eddd43bdb35eb6b78b5 (diff) |
*** empty log message ***
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@1828 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'src/northbridge/amd/amdk8')
-rw-r--r-- | src/northbridge/amd/amdk8/coherent_ht.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/northbridge/amd/amdk8/coherent_ht.c b/src/northbridge/amd/amdk8/coherent_ht.c index 32d040c673..3b20b62d34 100644 --- a/src/northbridge/amd/amdk8/coherent_ht.c +++ b/src/northbridge/amd/amdk8/coherent_ht.c @@ -367,8 +367,8 @@ static void setup_row_indirect(u8 source, u8 dest, u8 gateway, u8 diff) val_s >>=16; val_s &=0xfe; #if !CROSS_BAR_47_56 - if(((source&1)!=(dest &1)) && (val_s!=val) ) { // use another connect as response - val_s -= val; + if(((source&1)!=(dest &1)) && (val_s!=(val&0xff)) ) { // use another connect as response + val_s -= val & 0xff; #if CONFIG_MAX_CPUS>4 uint8_t byte; // Some node have two links left @@ -396,8 +396,8 @@ static void setup_row_indirect(u8 source, u8 dest, u8 gateway, u8 diff) #else - if(diff && (val_s!=val) ) { // use another connect as response - val_s -= val; + if(diff && (val_s!=(val&0xff)) ) { // use another connect as response + val_s -= val & 0xff; #if CONFIG_MAX_CPUS>4 uint8_t byte; // Some node have two links left |