8000 kernel: hil: ethernet: fix doc links by bradjc · Pull Request #4429 · tock/tock · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

kernel: hil: ethernet: fix doc links #4429

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
May 14, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions kernel/src/hil/ethernet.rs
Original file line number Diff line number Diff line change
Expand Up @@ -107,17 +107,17 @@ pub trait EthernetAdapterDatapath<'a> {
/// Enable reception of Ethernet frames.
///
/// Ethernet adapters must not invoke any
/// [`EthernetAdapaterClient::received_frame`] client methods before this
/// function is called, and not after [`EthernetAdapater::disable_receive`]
/// is called.
/// [`EthernetAdapterDatapathClient::received_frame`] client methods before
/// this function is called, and not after
/// [`EthernetAdapterDatapath::disable_receive`] is called.
fn enable_receive(&self);

/// Disable reception of Ethernet frames.
///
/// Ethernet adapters must not invoke any
/// [`EthernetAdapaterClient::received_frame`] client methods after this
/// function is called, until a subsequent call to
/// [`EthernetAdapater::enable_receive`].
/// [`EthernetAdapterDatapathClient::received_frame`] client methods after
/// this function is called, until a subsequent call to
/// [`EthernetAdapterDatapath::enable_receive`].
fn disable_receive(&self);

/// Transmit an Ethernet frame / enqueue a frame for transmission.
Expand Down
0