diff options
Diffstat (limited to 'sys/dev/usb/storage/ustorage_fs.c')
| -rw-r--r-- | sys/dev/usb/storage/ustorage_fs.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/sys/dev/usb/storage/ustorage_fs.c b/sys/dev/usb/storage/ustorage_fs.c index 856ea086dc33..73609615a879 100644 --- a/sys/dev/usb/storage/ustorage_fs.c +++ b/sys/dev/usb/storage/ustorage_fs.c @@ -595,7 +595,7 @@ tr_setup: break; } /* If the pipe is already stalled, don't do another stall */ - if (!xfer->pipe->is_stalled) { + if (!xfer->endpoint->is_stalled) { sc->sc_transfer.data_error = 1; } /* try again */ @@ -664,7 +664,7 @@ tr_setup: /* * If the pipe is already stalled, don't do another stall: */ - if (!xfer->pipe->is_stalled) { + if (!xfer->endpoint->is_stalled) { sc->sc_transfer.data_error = 1; } /* try again */ @@ -717,7 +717,7 @@ tr_setup: break; } /* If the pipe is already stalled, don't do another stall */ - if (!xfer->pipe->is_stalled) { + if (!xfer->endpoint->is_stalled) { sc->sc_transfer.data_error = 1; } /* try again */ @@ -779,7 +779,7 @@ tr_setup: * If the pipe is already stalled, don't do another * stall */ - if (!xfer->pipe->is_stalled) { + if (!xfer->endpoint->is_stalled) { sc->sc_transfer.data_error = 1; } /* try again */ @@ -821,7 +821,7 @@ tr_setup: break; } /* If the pipe is already stalled, don't do another stall */ - if (!xfer->pipe->is_stalled) { + if (!xfer->endpoint->is_stalled) { sc->sc_transfer.data_error = 1; } /* try again */ |
