CVSROOT: /cvs
Module name: src
Changes by: [email protected] 2011/09/19 15:53:02
Modified files:
sys/arch/vax/dec: dzcons.c
sys/arch/vax/include: ka650.h sid.h
sys/arch/vax/stand/boot: boot.c if_le.c
sys/arch/vax/vax: findcpu.c ibus.c ka46.c ka48.c ka53.c ka650.c
ka680.c machdep.c
sys/arch/vax/vsa: lcg.c
Log message:
Try and clean system type constants a bit:
- save the second byte of vax_siedata into a new variable, vax_cpustype,
and use it instead of (vax_siedata >> 8) & 0xff or other similar
constructs.
- the VAX_SIE_KAxxx constants are duplicates of the VAX_STYP_xx constants.
Standardize on the latter and kill the former.
- only keep VAX_VTYP_xx constants for KA46 and KA47, those are the only
systems which use these constants and are told apart by a different
SIE byte.
No functional change intended.