From 870c4cf8eb85824e65342be49c2efd2117030a06 Mon Sep 17 00:00:00 2001 From: Andrew Gallatin Date: Wed, 3 Nov 1999 22:43:03 +0000 Subject: now that a map's base addr is 64-bits, the alpha multi-hose hack needs to be cast to 64-bits in pci_add_map. This should allow XP1000s and DS20s to boot -current again. --- sys/dev/pci/pci.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'sys/dev/pci') diff --git a/sys/dev/pci/pci.c b/sys/dev/pci/pci.c index 2e6d5485ca6f..8cb59433c2e7 100644 --- a/sys/dev/pci/pci.c +++ b/sys/dev/pci/pci.c @@ -1034,15 +1034,15 @@ pci_add_map(device_t dev, pcicfgregs* cfg, int reg) if(cfg->hose){ if (base & 0x80000000) { - printf("base addr = 0x%x\n", base); - printf("hacked addr = 0x%x\n", - base | (cfg->hose << 31)); + printf("base addr = 0x%lx\n", base); + printf("hacked addr = 0x%lx\n", + base | ((u_int64_t)cfg->hose << 31)); panic("hose encoding hack would clobber base addr"); } if (cfg->hose > 1) panic("only one hose supported!"); - base |= (cfg->hose << 31); + base |= ((u_int64_t)cfg->hose << 31); } #endif if (type == SYS_RES_IOPORT && !pci_porten(cfg)) -- cgit v1.3