diff options
| author | John Baldwin <jhb@FreeBSD.org> | 2002-11-07 19:56:21 +0000 |
|---|---|---|
| committer | John Baldwin <jhb@FreeBSD.org> | 2002-11-07 19:56:21 +0000 |
| commit | 551d543a170d37feeffa36294c818298ab887962 (patch) | |
| tree | 0f08400384976fefc12882bc3720a06ebc53833a /sys/dev/si | |
| parent | 68883704880cd9f38881db791fa998bbf0c01379 (diff) | |
Notes
Diffstat (limited to 'sys/dev/si')
| -rw-r--r-- | sys/dev/si/si_isa.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/dev/si/si_isa.c b/sys/dev/si/si_isa.c index 69b4f50ac17a..c51046b68a20 100644 --- a/sys/dev/si/si_isa.c +++ b/sys/dev/si/si_isa.c @@ -78,7 +78,7 @@ si_isa_probe(device_t dev) goto fail; } - if (((u_int)paddr & 0x7fff) != 0) { + if (((uintptr_t)paddr & 0x7fff) != 0) { device_printf(dev, "maddr (%p) not on 32k boundary\n", paddr); goto fail; } |
