diff options
| author | Matt Jacob <mjacob@FreeBSD.org> | 2007-06-24 01:41:16 +0000 |
|---|---|---|
| committer | Matt Jacob <mjacob@FreeBSD.org> | 2007-06-24 01:41:16 +0000 |
| commit | 530755ca2d25b28810a2b6039ddedfd30e67b77d (patch) | |
| tree | 13c0496417680d56ccee5ffdcf72b4d68ca8ecb3 /sys/dev/isp/isp.c | |
| parent | d98db3b7b23f949880b6ad7216a8b7f1fffafe6c (diff) | |
Notes
Diffstat (limited to 'sys/dev/isp/isp.c')
| -rw-r--r-- | sys/dev/isp/isp.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/isp/isp.c b/sys/dev/isp/isp.c index 25b6e8f5b248..b099a5a35ed5 100644 --- a/sys/dev/isp/isp.c +++ b/sys/dev/isp/isp.c @@ -812,7 +812,7 @@ isp_reset(ispsoftc_t *isp) } cp = isp->isp_rquest; for (i = 0; i < nw; i++) { - cp[i] = ptr[wi++]; + ISP_IOXPUT_32(isp, ptr[wi++], &cp[i]); wl--; } MEMORYBARRIER(isp, SYNC_REQUEST, @@ -875,7 +875,7 @@ isp_reset(ispsoftc_t *isp) } cp = isp->isp_rquest; for (i = 0; i < nw; i++) { - cp[i] = ptr[wi++]; + ISP_IOXPUT_16(isp, ptr[wi++], &cp[i]); wl--; } MEMORYBARRIER(isp, SYNC_REQUEST, |
