summaryrefslogtreecommitdiff
path: root/src/mainboard/supermicro/h8qme_fam10
diff options
context:
space:
mode:
Diffstat (limited to 'src/mainboard/supermicro/h8qme_fam10')
-rw-r--r--src/mainboard/supermicro/h8qme_fam10/get_bus_conf.c4
-rw-r--r--src/mainboard/supermicro/h8qme_fam10/irq_tables.c8
-rw-r--r--src/mainboard/supermicro/h8qme_fam10/mb_sysconf.h6
-rw-r--r--src/mainboard/supermicro/h8qme_fam10/mptable.c4
-rw-r--r--src/mainboard/supermicro/h8qme_fam10/romstage.c2
5 files changed, 12 insertions, 12 deletions
diff --git a/src/mainboard/supermicro/h8qme_fam10/get_bus_conf.c b/src/mainboard/supermicro/h8qme_fam10/get_bus_conf.c
index f32312d6dc..56ea43c7fe 100644
--- a/src/mainboard/supermicro/h8qme_fam10/get_bus_conf.c
+++ b/src/mainboard/supermicro/h8qme_fam10/get_bus_conf.c
@@ -30,12 +30,12 @@
// Global variables for MB layouts and these will be shared by irqtable mptable and acpi_tables
struct mb_sysconf_t mb_sysconf;
-unsigned sbdn3;
+unsigned int sbdn3;
void get_bus_conf(void)
{
- unsigned apicid_base;
+ unsigned int apicid_base;
struct mb_sysconf_t *m;
struct device *dev;
diff --git a/src/mainboard/supermicro/h8qme_fam10/irq_tables.c b/src/mainboard/supermicro/h8qme_fam10/irq_tables.c
index 5248567739..b77e86209b 100644
--- a/src/mainboard/supermicro/h8qme_fam10/irq_tables.c
+++ b/src/mainboard/supermicro/h8qme_fam10/irq_tables.c
@@ -49,10 +49,10 @@ unsigned long write_pirq_routing_table(unsigned long addr)
struct irq_routing_table *pirq;
struct irq_info *pirq_info;
- unsigned slot_num;
+ unsigned int slot_num;
uint8_t *v;
struct mb_sysconf_t *m;
- unsigned sbdn;
+ unsigned int sbdn;
uint8_t sum = 0;
int i;
@@ -96,8 +96,8 @@ unsigned long write_pirq_routing_table(unsigned long addr)
for (i = 1; i < sysconf.hc_possible_num; i++) {
if (!(sysconf.pci1234[i] & 0x1))
continue;
- unsigned busn = (sysconf.pci1234[i] >> 12) & 0xff;
- unsigned devn = sysconf.hcdn[i] & 0xff;
+ unsigned int busn = (sysconf.pci1234[i] >> 12) & 0xff;
+ unsigned int devn = sysconf.hcdn[i] & 0xff;
write_pirq_info(pirq_info, busn, PCI_DEVFN(devn, 0), 0x1, 0x4ca0,
0x2, 0x4ca0, 0x3, 0x4ca0, 0x4, 0x4ca0, 0, 0);
diff --git a/src/mainboard/supermicro/h8qme_fam10/mb_sysconf.h b/src/mainboard/supermicro/h8qme_fam10/mb_sysconf.h
index de45310c62..f93f9e8380 100644
--- a/src/mainboard/supermicro/h8qme_fam10/mb_sysconf.h
+++ b/src/mainboard/supermicro/h8qme_fam10/mb_sysconf.h
@@ -20,13 +20,13 @@
struct mb_sysconf_t {
unsigned char bus_mcp55[8]; //1
- unsigned apicid_mcp55;
+ unsigned int apicid_mcp55;
unsigned char bus_8132_0; //7
unsigned char bus_8132_1; //8
unsigned char bus_8132_2; //9
- unsigned apicid_8132_1;
- unsigned apicid_8132_2;
+ unsigned int apicid_8132_1;
+ unsigned int apicid_8132_2;
};
#endif
diff --git a/src/mainboard/supermicro/h8qme_fam10/mptable.c b/src/mainboard/supermicro/h8qme_fam10/mptable.c
index 8c884c4d65..7e6237f1f6 100644
--- a/src/mainboard/supermicro/h8qme_fam10/mptable.c
+++ b/src/mainboard/supermicro/h8qme_fam10/mptable.c
@@ -22,13 +22,13 @@
#include <cpu/amd/amdfam10_sysconf.h>
#include "mb_sysconf.h"
-extern unsigned sbdn3;
+extern unsigned int sbdn3;
static void *smp_write_config_table(void *v)
{
struct mp_config_table *mc;
struct mb_sysconf_t *m;
- unsigned sbdn;
+ unsigned int sbdn;
int i, j, bus_isa;
mc = (void *)(((char *)v) + SMP_FLOATING_TABLE_LEN);
diff --git a/src/mainboard/supermicro/h8qme_fam10/romstage.c b/src/mainboard/supermicro/h8qme_fam10/romstage.c
index 56d9f35ef2..7c489ca8dd 100644
--- a/src/mainboard/supermicro/h8qme_fam10/romstage.c
+++ b/src/mainboard/supermicro/h8qme_fam10/romstage.c
@@ -63,7 +63,7 @@ inline int spd_read_byte(unsigned int device, unsigned int address)
return smbus_read_byte(device, address);
}
-unsigned get_sbdn(unsigned bus)
+unsigned int get_sbdn(unsigned int bus)
{
pci_devfn_t dev;