Subject: NetBSD master CVS tree commits
To: None <source-changes@NetBSD.ORG>
From: None <source@NetBSD.ORG>
List: source-changes
Date: 10/01/1997 01:20:03
enami
Tue Sep 30 18:19:29 PDT 1997
Update of /cvsroot/src/sys/dev/scsipi
In directory netbsd1:/var/slash-tmp/cvs-serv16524

Modified Files:
	atapi_base.c atapi_cd.h atapiconf.c atapiconf.h cd.c 
	cd_atapi.c cd_scsi.c ch.c files.scsipi if_se.c scsi_all.h 
	scsi_base.c scsi_cd.h scsi_disk.h scsi_tape.h scsiconf.c 
	scsiconf.h scsipi_all.h scsipi_base.c scsipi_base.h 
	scsipi_cd.h scsipi_disk.h scsipi_ioctl.c scsipiconf.c 
	scsipiconf.h sd.c ss.c ss_mustek.c ss_scanjet.c st.c uk.c 
Log Message:
Cosmetic changes to keep coding style consistency in this directory;

- Indent with tab of width 8.
- Use four column to indent continuation line.
- Fold long line if possible.
- Use return (xx) instead of return xx.
- Compare pointer against NULL instead of testing like boolean.
- Delete whitespace at the end of line.
- Delete whitespace in front of function call operator.
- Delete whitespace after cast.
- Dereference a pointer to function explicitly.
- Add an empty line after local variable declaration.
- Use NULL instead of (char *)0.
- Dont use block for single statement.