From 961b97d43458f3c57241940cabebb3bedf7e4c00 Mon Sep 17 00:00:00 2001 From: jake Date: Fri, 26 May 2000 02:09:24 +0000 Subject: Back out the previous change to the queue(3) interface. It was not discussed and should probably not happen. Requested by: msmith and others --- sys/dev/amd/amd.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'sys/dev/amd') diff --git a/sys/dev/amd/amd.h b/sys/dev/amd/amd.h index e36956e..85f4f80 100644 --- a/sys/dev/amd/amd.h +++ b/sys/dev/amd/amd.h @@ -154,7 +154,7 @@ typedef struct _EEprom { * SCSI Request Block */ struct amd_srb { - TAILQ_ENTRY(struct amd_srb) links; + TAILQ_ENTRY(amd_srb) links; u_int8_t CmdBlock[12]; union ccb *pccb; bus_dmamap_t dmamap; @@ -187,7 +187,7 @@ struct amd_srb { u_int8_t ScsiCmdLen; }; -TAILQ_HEAD(srb_queue, struct amd_srb); +TAILQ_HEAD(srb_queue, amd_srb); /* * Per-adapter, software configuration. -- cgit v1.1