diff options
author | Michael Shalayeff <mickey@cvs.openbsd.org> | 2003-01-29 20:35:14 +0000 |
---|---|---|
committer | Michael Shalayeff <mickey@cvs.openbsd.org> | 2003-01-29 20:35:14 +0000 |
commit | 9e6d8b5941e938544c8957aada45c6809721aff3 (patch) | |
tree | d99175be8479cd2d763373f36cbb22a3ebf7af98 | |
parent | 9b540209eaccb994a3897232f29e91ff7bf0f375 (diff) |
oops, test-compiled the wrong source, missing paren
-rw-r--r-- | sys/dev/isa/mpu_isa.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/isa/mpu_isa.c b/sys/dev/isa/mpu_isa.c index d273c8016ec..cc1e852ec08 100644 --- a/sys/dev/isa/mpu_isa.c +++ b/sys/dev/isa/mpu_isa.c @@ -1,4 +1,4 @@ -/* $OpenBSD: mpu_isa.c,v 1.2 2003/01/29 20:32:23 mickey Exp $ */ +/* $OpenBSD: mpu_isa.c,v 1.3 2003/01/29 20:35:13 mickey Exp $ */ /* * Copyright (c) 2002 Sergey Smitienko. All rights reserved. @@ -94,7 +94,7 @@ mpu_test (iot, iobase) goto done; for (i = 0; i < MPU_MAXWAIT; i++) { - if (!MPU_GETSTATUS(iot, ioh) & MPU_OUTPUT_BUSY)) { + if (!(MPU_GETSTATUS(iot, ioh) & MPU_OUTPUT_BUSY)) { rc = 1; break; } |