diff options
| author | Justin T. Gibbs <gibbs@FreeBSD.org> | 1998-10-15 23:47:14 +0000 |
|---|---|---|
| committer | Justin T. Gibbs <gibbs@FreeBSD.org> | 1998-10-15 23:47:14 +0000 |
| commit | b9450b7b2f17f7636e30eb92cecdb3f45ef75722 (patch) | |
| tree | dc2f30d6930ec7b7ef8c833aa8cdda37c38c0c7a | |
| parent | 4663e36736f0558c8ffc2816322daa82852751d7 (diff) | |
Notes
| -rw-r--r-- | sys/dev/advansys/advansys.c | 19 | ||||
| -rw-r--r-- | sys/dev/advansys/adwcam.c | 6 |
2 files changed, 5 insertions, 20 deletions
diff --git a/sys/dev/advansys/advansys.c b/sys/dev/advansys/advansys.c index 8cba0c8fb150..ac47f8d7bac4 100644 --- a/sys/dev/advansys/advansys.c +++ b/sys/dev/advansys/advansys.c @@ -32,7 +32,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: advansys.c,v 1.2 1998/09/20 05:04:05 gibbs Exp $ + * $Id: advansys.c,v 1.3 1998/10/07 03:32:56 gibbs Exp $ */ /* * Ported from: @@ -75,7 +75,6 @@ u_long adv_unit; -static void advminphys(struct buf *bp); static void adv_action(struct cam_sim *sim, union ccb *ccb); static void adv_execute_ccb(void *arg, bus_dma_segment_t *dm_segs, int nsegments, int error); @@ -84,7 +83,7 @@ static void adv_run_doneq(struct adv_softc *adv); static struct adv_ccb_info * adv_alloc_ccb_info(struct adv_softc *adv); static void adv_destroy_ccb_info(struct adv_softc *adv, - struct adv_ccb_info *cinfo); + struct adv_ccb_info *cinfo); static __inline struct adv_ccb_info * adv_get_ccb_info(struct adv_softc *adv); static __inline void adv_free_ccb_info(struct adv_softc *adv, @@ -237,7 +236,6 @@ adv_action(struct cam_sim *sim, union ccb *ccb) case XPT_SET_TRAN_SETTINGS: { struct ccb_trans_settings *cts; - u_int offset; target_bit_vector targ_mask; struct adv_target_transinfo *tconf; u_int update_type; @@ -577,13 +575,6 @@ adv_destroy_ccb_info(struct adv_softc *adv, struct adv_ccb_info *cinfo) free(cinfo, M_DEVBUF); } -static void -advminphys(struct buf *bp) -{ - if (bp->b_bcount > ((ADV_MAX_SG_LIST - 1) * PAGE_SIZE)) - bp->b_bcount = ((ADV_MAX_SG_LIST - 1) * PAGE_SIZE); -} - void adv_timeout(void *arg) { @@ -660,7 +651,6 @@ struct adv_softc * adv_alloc(int unit, bus_space_tag_t tag, bus_space_handle_t bsh) { struct adv_softc *adv; - int i; if (unit >= NADV) { printf("adv: unit number (%d) too high\n", unit); @@ -701,7 +691,7 @@ adv_free(struct adv_softc *adv) while ((cinfo = SLIST_FIRST(&adv->free_ccb_infos)) != NULL) { SLIST_REMOVE_HEAD(&adv->free_ccb_infos, links); - adv_free_ccb_info(adv, cinfo); + adv_destroy_ccb_info(adv, cinfo); } bus_dmamap_unload(adv->sense_dmat, adv->sense_dmamap); @@ -900,7 +890,6 @@ adv_intr(void *arg) u_int16_t saved_ram_addr; u_int8_t ctrl_reg; u_int8_t saved_ctrl_reg; - int status; u_int8_t host_flag; adv = (struct adv_softc *)arg; @@ -1132,9 +1121,7 @@ adv_done(struct adv_softc *adv, union ccb *ccb, u_int done_stat, * We now traverse our list of pending CCBs and reinstate * their timeouts. */ - struct cam_path *path; struct ccb_hdr *ccb_h; - cam_status error; ccb_h = LIST_FIRST(&adv->pending_ccbs); while (ccb_h != NULL) { diff --git a/sys/dev/advansys/adwcam.c b/sys/dev/advansys/adwcam.c index 3130fc755608..e2c39214354f 100644 --- a/sys/dev/advansys/adwcam.c +++ b/sys/dev/advansys/adwcam.c @@ -30,7 +30,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id$ + * $Id: adwcam.c,v 1.1 1998/10/07 03:20:46 gibbs Exp $ */ /* * Ported from: @@ -252,7 +252,7 @@ adwexecuteacb(void *arg, bus_dma_segment_t *dm_segs, int nseg, int error) struct acb *acb; union ccb *ccb; struct adw_softc *adw; - int s, i; + int s; acb = (struct acb *)arg; ccb = acb->ccb; @@ -366,7 +366,6 @@ static void adw_action(struct cam_sim *sim, union ccb *ccb) { struct adw_softc *adw; - int s; CAM_DEBUG(ccb->ccb_h.path, CAM_DEBUG_TRACE, ("adw_action\n")); @@ -558,7 +557,6 @@ adw_action(struct cam_sim *sim, union ccb *ccb) } if ((cts->valid & CCB_TRANS_TQ_VALID) != 0) { - u_int tagenb; if ((cts->flags & CCB_TRANS_TAG_ENB) != 0) adw->tagenb |= target_mask; |
