diff options
author | cinap_lenrek <cinap_lenrek@felloff.net> | 2014-02-01 10:23:17 +0100 |
---|---|---|
committer | cinap_lenrek <cinap_lenrek@felloff.net> | 2014-02-01 10:23:17 +0100 |
commit | 28ad4e661610353efec655fdf147a46e156bf46e (patch) | |
tree | e830a6f8cfa91507114c1bc52f3c45356d235b15 /sys/src/9/pc/ether82563.c | |
parent | 06bc19c28f3bd1528f669626eb9826226decabd9 (diff) |
pc kernel: split mpstartap() and squidboy into separate file... stuff for amd64
Diffstat (limited to 'sys/src/9/pc/ether82563.c')
-rw-r--r-- | sys/src/9/pc/ether82563.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/src/9/pc/ether82563.c b/sys/src/9/pc/ether82563.c index 4e8df5452..ac4b32b72 100644 --- a/sys/src/9/pc/ether82563.c +++ b/sys/src/9/pc/ether82563.c @@ -1896,7 +1896,7 @@ setup(Ctlr *ctlr) p = ctlr->pcidev; ctlr->nic = vmap(ctlr->port, p->mem[0].size); if(ctlr->nic == nil){ - print("%s: can't map %#p\n", cname(ctlr), ctlr->port); + print("%s: can't map 0x%lux\n", cname(ctlr), ctlr->port); return -1; } if(i82563reset(ctlr)){ |