diff options
| author | hathach <[email protected]> | 2018-12-11 13:15:05 +0700 |
|---|---|---|
| committer | hathach <[email protected]> | 2018-12-11 13:15:05 +0700 |
| commit | dbc560658a900525acd11ffcae2e59839d9c6fe5 (patch) | |
| tree | 80fb910f81090ebaf463a80225da26895e360caa /src/host/ohci | |
| parent | 0d04e6eb96935723f17969bf43a33532fcebcbf6 (diff) | |
more hcd_pipe to hcd_edpt rename
Diffstat (limited to 'src/host/ohci')
| -rw-r--r-- | src/host/ohci/ohci.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/host/ohci/ohci.c b/src/host/ohci/ohci.c index 37de86c60..4c54c5eaa 100644 --- a/src/host/ohci/ohci.c +++ b/src/host/ohci/ohci.c @@ -583,19 +583,19 @@ tusb_error_t hcd_pipe_close(pipe_handle_t pipe_hdl) return TUSB_ERROR_FAILED;
}
-bool hcd_pipe_is_busy(pipe_handle_t pipe_hdl)
+bool hcd_edpt_busy(pipe_handle_t pipe_hdl)
{
ohci_ed_t const * const p_ed = ed_from_pipe_handle(pipe_hdl);
return tu_align16(p_ed->td_head.address) != tu_align16(p_ed->td_tail.address);
}
-bool hcd_pipe_is_stalled(pipe_handle_t pipe_hdl)
+bool hcd_edpt_stalled(pipe_handle_t pipe_hdl)
{
ohci_ed_t const * const p_ed = ed_from_pipe_handle(pipe_hdl);
return p_ed->td_head.halted && p_ed->is_stalled;
}
-tusb_error_t hcd_pipe_clear_stall(pipe_handle_t pipe_hdl)
+tusb_error_t hcd_edpt_clear_stall(pipe_handle_t pipe_hdl)
{
ohci_ed_t * const p_ed = ed_from_pipe_handle(pipe_hdl);
|
