freebsd-nq/sys/i386
Bruce Evans 69ed480f48 pmap.c:
Cast pointers to (vm_offset_t) instead of to (u_long) (as before) or to
(uintptr_t)(void *) (as would be more correct).  Don't cast vm_offset_t's
to (u_long) just to do arithmetic on them.

mp_machdep.c:
Cast pointers to (uintptr_t) instead of to (u_long).  Don't forget
to cast pointers to (void *) first or to recover from integral
possible integral promotions, although this is too much work for
machine-dependent code.

vm code generally avoids warnings for pointer vs long size mismatches
by using vm_offset_t to represent pointers; pmap.c often uses plain
`unsigned int' instead of vm_offset_t and didn't use u_long elsewhere,
but this style was messed up by code apparently imported from mp_machdep.c.
1998-08-16 00:41:40 +00:00
..
apm Add the ability to suspend as well as hibernate to the system. This 1998-07-06 06:29:07 +00:00
bios Add the ability to suspend as well as hibernate to the system. This 1998-07-06 06:29:07 +00:00
boot Correct an irritating documentation error. 1998-08-04 00:39:45 +00:00
conf Reserve majors for M-Systems DiskOnChip driver. This driver will be 1998-08-10 09:06:21 +00:00
eisa MF22: Shut this thing up by default. 1998-08-09 02:22:34 +00:00
i386 pmap.c: 1998-08-16 00:41:40 +00:00
ibcs2 Updated generated files. 1998-06-09 03:36:59 +00:00
include pmap.c: 1998-08-16 00:41:40 +00:00
isa Use offsetof() to avoid some casts from pointers to integers (of a 1998-08-15 21:36:16 +00:00
linux Oops, the previous fix confused Linux's sigset_t with a pointer type. 1998-08-15 22:29:43 +00:00
pci Make the class code checks in function pci_cfgcheck less strict. 1997-12-20 09:04:25 +00:00
scsi Fixed pedantic semantics errors (bitfields not of type int, signed int 1998-06-08 09:47:47 +00:00
Makefile Make this ${.OBJDIR} and ${.CURDIR} aware. 1998-05-31 22:40:49 +00:00