mirror of
https://git.FreeBSD.org/src.git
synced 2024-12-17 10:26:15 +00:00
Fix a typo in the RESTART_SEQUENCER macro that could have caused
strange results. This bug has been in here for a loooong time. Many thanks to Pedro Salenbauch for finding this. Submitted by: pedrosal@nce.ufrj.br (Pedro Salenbauch)
This commit is contained in:
parent
2113a60c4b
commit
ff3f23849e
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=15356
@ -31,7 +31,7 @@
|
||||
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
||||
* SUCH DAMAGE.
|
||||
*
|
||||
* $Id: aic7xxx.c,v 1.61 1996/04/20 21:29:25 gibbs Exp $
|
||||
* $Id: aic7xxx.c,v 1.62 1996/04/22 13:21:40 gibbs Exp $
|
||||
*/
|
||||
/*
|
||||
* TODO:
|
||||
@ -198,7 +198,7 @@ static struct scsi_device ahc_dev =
|
||||
do { \
|
||||
outb( SEQCTL + ahc->baseport, SEQRESET|FASTMODE ); \
|
||||
} while (inb(SEQADDR0 + ahc->baseport) != 0 && \
|
||||
inb(SEQADDR1 + ahc->baseport != 0)); \
|
||||
inb(SEQADDR1 + ahc->baseport) != 0); \
|
||||
\
|
||||
UNPAUSE_SEQUENCER(ahc);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user