diff options
author | jake <jake@FreeBSD.org> | 2000-05-26 02:09:24 +0000 |
---|---|---|
committer | jake <jake@FreeBSD.org> | 2000-05-26 02:09:24 +0000 |
commit | 961b97d43458f3c57241940cabebb3bedf7e4c00 (patch) | |
tree | 6014972d9b90b4e3a8b20dbea641a88cf6355c13 /sys/dev/ahb/ahbreg.h | |
parent | 06b64672180d9b04ae6d35db819c854df3c3c684 (diff) | |
download | FreeBSD-src-961b97d43458f3c57241940cabebb3bedf7e4c00.zip FreeBSD-src-961b97d43458f3c57241940cabebb3bedf7e4c00.tar.gz |
Back out the previous change to the queue(3) interface.
It was not discussed and should probably not happen.
Requested by: msmith and others
Diffstat (limited to 'sys/dev/ahb/ahbreg.h')
-rw-r--r-- | sys/dev/ahb/ahbreg.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/dev/ahb/ahbreg.h b/sys/dev/ahb/ahbreg.h index 1312748..c72f068 100644 --- a/sys/dev/ahb/ahbreg.h +++ b/sys/dev/ahb/ahbreg.h @@ -251,7 +251,7 @@ struct ecb { struct ecb_status status; struct scsi_sense_data sense; ahb_sg_t sg_list[AHB_NSEG]; - SLIST_ENTRY(struct ecb) links; + SLIST_ENTRY(ecb) links; ecb_state state; union ccb *ccb; bus_dmamap_t dmamap; @@ -262,8 +262,8 @@ struct ahb_softc { bus_space_handle_t bsh; struct cam_sim *sim; struct cam_path *path; - SLIST_HEAD(, struct ecb) free_ecbs; - LIST_HEAD(, struct ccb_hdr) pending_ccbs; + SLIST_HEAD(,ecb) free_ecbs; + LIST_HEAD(,ccb_hdr) pending_ccbs; struct ecb *ecb_array; u_int32_t ecb_physbase; bus_dma_tag_t buffer_dmat; /* dmat for buffer I/O */ |