mirror of
https://github.com/freebsd/freebsd-src
synced 2024-11-05 18:22:52 +00:00
Fix incorrect bit definitions for SXFRCTL0 (typo). The affected bits
aren't referenced by the driver yet, so this error shouldn't have caused any problems. Submitted by: Dan Eischen <deischen@iworks.InterWorks.org>
This commit is contained in:
parent
185156015b
commit
7ae20993a0
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=11880
1 changed files with 4 additions and 4 deletions
|
@ -24,7 +24,7 @@
|
|||
*
|
||||
* commenced: Sun Sep 27 18:14:01 PDT 1992
|
||||
*
|
||||
* $Id: aic7xxx.c,v 1.38 1995/09/05 23:52:02 gibbs Exp $
|
||||
* $Id: aic7xxx.c,v 1.39 1995/10/26 23:57:16 gibbs Exp $
|
||||
*/
|
||||
/*
|
||||
* TODO:
|
||||
|
@ -158,9 +158,9 @@ struct scsi_device ahc_dev =
|
|||
#define DFPEXP 0x40
|
||||
#define ULTRAEN 0x20
|
||||
#define CLRSTCNT 0x10
|
||||
#define SPIOEN 0x80
|
||||
#define SCAMEN 0x40
|
||||
#define CLRCHN 0x20
|
||||
#define SPIOEN 0x08
|
||||
#define SCAMEN 0x04
|
||||
#define CLRCHN 0x02
|
||||
/* UNUSED 0x01 */
|
||||
|
||||
/*
|
||||
|
|
Loading…
Reference in a new issue