aboutsummaryrefslogtreecommitdiff
path: root/src/mainboard/tyan/s2895/get_bus_conf.c
diff options
context:
space:
mode:
authorYinghai Lu <yinghailu@gmail.com>2005-12-07 16:35:49 +0000
committerYinghai Lu <yinghailu@gmail.com>2005-12-07 16:35:49 +0000
commit73cc74e4f08fbd41d2025fd20abf9427d94e618a (patch)
tree316797ba4735c55af7838353edbdb2ed7513d619 /src/mainboard/tyan/s2895/get_bus_conf.c
parentb3b1b2d3fbdae2409279a08da80c592da78ab13b (diff)
fix type error for s2895
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@2138 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'src/mainboard/tyan/s2895/get_bus_conf.c')
-rw-r--r--src/mainboard/tyan/s2895/get_bus_conf.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mainboard/tyan/s2895/get_bus_conf.c b/src/mainboard/tyan/s2895/get_bus_conf.c
index 070e6dc5f2..3decafb71e 100644
--- a/src/mainboard/tyan/s2895/get_bus_conf.c
+++ b/src/mainboard/tyan/s2895/get_bus_conf.c
@@ -187,7 +187,7 @@ void get_bus_conf(void)
/* CK804b */
- if(pci1234[2] & 0f) { //if the second cpu is installed
+ if(pci1234[2] & 0xf) { //if the second cpu is installed
bus_ck804b_0 = (pci1234[2]>>16) & 0xff;
#if 0
dev = dev_find_slot(bus_ck804b_0, PCI_DEVFN(sbdnb + 0x09,0));