diff options
| author | mjacob <mjacob@NetBSD.org> | 2002-04-05 02:09:39 +0000 |
|---|---|---|
| committer | mjacob <mjacob@NetBSD.org> | 2002-04-05 02:09:39 +0000 |
| commit | 83f4603dc77008d440fb05f9c0c568af2e655fbb (patch) | |
| tree | d8815d96417537b55173a37eff642c3277e2c905 /sys/dev | |
| parent | 2d7c87ebfb3acabead4f52ac38e7853c360b8fad (diff) | |
Correct put of fc4_types to 32 bits, which is what it is.
Diffstat (limited to 'sys/dev')
| -rw-r--r-- | sys/dev/ic/isp_inline.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/ic/isp_inline.h b/sys/dev/ic/isp_inline.h index 1fcc9964844..50bb9af757d 100644 --- a/sys/dev/ic/isp_inline.h +++ b/sys/dev/ic/isp_inline.h @@ -1,4 +1,4 @@ -/* $NetBSD: isp_inline.h,v 1.18 2002/04/04 23:38:45 mjacob Exp $ */ +/* $NetBSD: isp_inline.h,v 1.19 2002/04/05 02:09:39 mjacob Exp $ */ /* * This driver, which is contained in NetBSD in the files: * @@ -775,7 +775,7 @@ isp_put_gid_ft_request(struct ispsoftc *isp, sns_gid_ft_req_t *src, ISP_IOXPUT_16(isp, src->snscb_cmd, &dst->snscb_cmd); ISP_IOXPUT_16(isp, src->snscb_mword_div_2, &dst->snscb_mword_div_2); ISP_IOXPUT_32(isp, src->snscb_res3, &dst->snscb_res3); - ISP_IOXPUT_16(isp, src->snscb_fc4_type, &dst->snscb_fc4_type); + ISP_IOXPUT_32(isp, src->snscb_fc4_type, &dst->snscb_fc4_type); } static INLINE void |
