Subject: CVS commit: src/sys/dev/ic
To: None <source-changes@NetBSD.org>
From: Izumi Tsutsui <tsutsui@netbsd.org>
List: source-changes
Date: 09/10/2005 19:15:44
Module Name:	src
Committed By:	tsutsui
Date:		Sat Sep 10 19:15:44 UTC 2005

Modified Files:
	src/sys/dev/ic: aic7xxx.c

Log Message:
The length member in struct scsi_request_sense is uint8_t so
no need to swap byteorder.
Whele here, change style of some byteswap ops from
	foo = bar();
	foo = ahc_htole32(foo);
to
	foo = ahc_htole32(bar());

XXX: I leave ahc_htole32() usage for union ins_formats for now
XXX: though it may be better to use byte-shift ops rather than byteswap.


To generate a diff of this commit:
cvs rdiff -r1.115 -r1.116 src/sys/dev/ic/aic7xxx.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.