diff options
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 da1e03e..23501ee 100644 --- a/sys/dev/ahb/ahbreg.h +++ b/sys/dev/ahb/ahbreg.h @@ -255,12 +255,13 @@ struct ecb { ecb_state state; union ccb *ccb; bus_dmamap_t dmamap; + struct callout timer; }; struct ahb_softc { device_t dev; - bus_space_tag_t tag; - bus_space_handle_t bsh; + struct resource *res; + struct mtx lock; struct cam_sim *sim; struct cam_path *path; SLIST_HEAD(,ecb) free_ecbs; @@ -274,7 +275,6 @@ struct ahb_softc { struct ecb *immed_ecb; struct ha_inquiry_data *ha_inq_data; u_int32_t ha_inq_physbase; - u_long unit; u_int init_level; u_int scsi_id; u_int num_ecbs; |