diff options
author | jake <jake@FreeBSD.org> | 2000-05-23 20:41:01 +0000 |
---|---|---|
committer | jake <jake@FreeBSD.org> | 2000-05-23 20:41:01 +0000 |
commit | d93fbc99166053b75c2eeb69b5cb603cfaf79ec0 (patch) | |
tree | a4f130be4544ce7cfe4afa8c93f996b871433cb8 /sys/dev/amd | |
parent | e814d2a0db522b0f163eef55a56d05aa226951f3 (diff) | |
download | FreeBSD-src-d93fbc99166053b75c2eeb69b5cb603cfaf79ec0.zip FreeBSD-src-d93fbc99166053b75c2eeb69b5cb603cfaf79ec0.tar.gz |
Change the way that the queue(3) structures are declared; don't assume that
the type argument to *_HEAD and *_ENTRY is a struct.
Suggested by: phk
Reviewed by: phk
Approved by: mdodd
Diffstat (limited to 'sys/dev/amd')
-rw-r--r-- | sys/dev/amd/amd.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/amd/amd.h b/sys/dev/amd/amd.h index 85f4f80..e36956e 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(amd_srb) links; + TAILQ_ENTRY(struct 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, amd_srb); +TAILQ_HEAD(srb_queue, struct amd_srb); /* * Per-adapter, software configuration. |