diff options
author | scottl <scottl@FreeBSD.org> | 2004-05-05 14:19:43 +0000 |
---|---|---|
committer | scottl <scottl@FreeBSD.org> | 2004-05-05 14:19:43 +0000 |
commit | 028a8161e544fcc76582e3fa4dd53d3cd8d92ede (patch) | |
tree | 32ad73ef65b219f2d2a5d3f06cb16daa3f7cec06 | |
parent | 8962112f000bdf928616c5f3b3d60782e4ac979f (diff) | |
download | FreeBSD-src-028a8161e544fcc76582e3fa4dd53d3cd8d92ede.zip FreeBSD-src-028a8161e544fcc76582e3fa4dd53d3cd8d92ede.tar.gz |
Update the version history in the driver to note everything that has happened
over the last three weeks.
-rw-r--r-- | sys/dev/asr/asr.c | 15 |
1 files changed, 10 insertions, 5 deletions
diff --git a/sys/dev/asr/asr.c b/sys/dev/asr/asr.c index ae83763..06184ae 100644 --- a/sys/dev/asr/asr.c +++ b/sys/dev/asr/asr.c @@ -22,6 +22,11 @@ * * SCSI I2O host adapter driver * + * V1.10 2004/05/05 scottl@freebsd.org + * - Massive cleanup of the driver to remove dead code and + * non-conformant style. + * - Removed most i386-specific code to make it more portable. + * - Converted to the bus_space API. * V1.08 2001/08/21 Mark_Salyzyn@adaptec.com * - The 2000S and 2005S do not initialize on some machines, * increased timeout to 255ms from 50ms for the StatusGet @@ -153,11 +158,11 @@ __FBSDID("$FreeBSD$"); #define ASR_VERSION 1 -#define ASR_REVISION '0' -#define ASR_SUBREVISION '8' -#define ASR_MONTH 8 -#define ASR_DAY 21 -#define ASR_YEAR 2001 - 1980 +#define ASR_REVISION '1' +#define ASR_SUBREVISION '0' +#define ASR_MONTH 5 +#define ASR_DAY 5 +#define ASR_YEAR (2004 - 1980) /* * Debug macros to reduce the unsightly ifdefs |