diff options
author | gibbs <gibbs@FreeBSD.org> | 2000-09-22 22:06:44 +0000 |
---|---|---|
committer | gibbs <gibbs@FreeBSD.org> | 2000-09-22 22:06:44 +0000 |
commit | 41b2530efd91abc23c66b9cd5069b0c5f9b13cf7 (patch) | |
tree | 4e6b87e2ee9570a07986d256947d16e93f0e668d /sys/dev/aic7xxx/aic7xxx.seq | |
parent | c15214675bf82e6bb5c7e9d3c4000ca4db702f60 (diff) | |
download | FreeBSD-src-41b2530efd91abc23c66b9cd5069b0c5f9b13cf7.zip FreeBSD-src-41b2530efd91abc23c66b9cd5069b0c5f9b13cf7.tar.gz |
Use quoted includes instead of full path references inside the aic7xxx
sequencer files. Different platforms place the included files in different
locations and it is easier to modify the include path passed as arguments
to the assembler than adding #ifdef support to the assembler.
Remove a spurious 'nop' instruction.
Diffstat (limited to 'sys/dev/aic7xxx/aic7xxx.seq')
-rw-r--r-- | sys/dev/aic7xxx/aic7xxx.seq | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/sys/dev/aic7xxx/aic7xxx.seq b/sys/dev/aic7xxx/aic7xxx.seq index b5e50f5..a1a2e98 100644 --- a/sys/dev/aic7xxx/aic7xxx.seq +++ b/sys/dev/aic7xxx/aic7xxx.seq @@ -28,13 +28,13 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id$ + * $Id: //depot/src/aic7xxx/aic7xxx.seq#4 $ * * $FreeBSD$ */ -#include <dev/aic7xxx/aic7xxx.reg> -#include <cam/scsi/scsi_message.h> +#include "aic7xxx.reg" +#include "scsi_message.h" /* * A few words on the waiting SCB list: @@ -1373,7 +1373,6 @@ p_mesgin: * shouldn't hurt, but why do it twice... */ host_message_loop: - nop; mvi INTSTAT, HOST_MSG_LOOP; call phase_lock; cmp RETURN_1, EXIT_MSG_LOOP je ITloop + 1; |