We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f6b35e6 commit aaec242Copy full SHA for aaec242
tests/net/socket/net_mgmt/src/main.c
@@ -87,6 +87,7 @@ static int eth_fake_send(const struct device *dev,
87
88
static int eth_fake_get_total_bandwidth(struct eth_fake_context *ctx)
89
{
90
+ ARG_UNUSED(ctx);
91
return 100 * 1000 * 1000 / 8;
92
}
93
@@ -221,6 +222,7 @@ static int eth_fake_get_config(const struct device *dev,
221
222
223
static enum ethernet_hw_caps eth_fake_get_capabilities(const struct device *dev)
224
225
+ ARG_UNUSED(dev);
226
return ETHERNET_LINK_10BASE | ETHERNET_LINK_100BASE | ETHERNET_QAV |
227
ETHERNET_PROMISC_MODE | ETHERNET_PRIORITY_QUEUES;
228
0 commit comments