summaryrefslogtreecommitdiffstats
path: root/src/include/ipxe/arp.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/include/ipxe/arp.h')
-rw-r--r--src/include/ipxe/arp.h7
1 files changed, 3 insertions, 4 deletions
diff --git a/src/include/ipxe/arp.h b/src/include/ipxe/arp.h
index 5822fa095..c70ea7eff 100644
--- a/src/include/ipxe/arp.h
+++ b/src/include/ipxe/arp.h
@@ -8,6 +8,7 @@
*/
FILE_LICENCE ( GPL2_OR_LATER_OR_UBDL );
+FILE_SECBOOT ( PERMITTED );
#include <ipxe/tables.h>
#include <ipxe/netdevice.h>
@@ -45,16 +46,14 @@ extern struct neighbour_discovery arp_discovery;
* @v net_protocol Network-layer protocol
* @v net_dest Destination network-layer address
* @v net_source Source network-layer address
- * @v ll_source Source link-layer address
* @ret rc Return status code
*/
static inline int arp_tx ( struct io_buffer *iobuf, struct net_device *netdev,
struct net_protocol *net_protocol,
- const void *net_dest, const void *net_source,
- const void *ll_source ) {
+ const void *net_dest, const void *net_source ) {
return neighbour_tx ( iobuf, netdev, net_protocol, net_dest,
- &arp_discovery, net_source, ll_source );
+ &arp_discovery, net_source );
}
extern int arp_tx_request ( struct net_device *netdev,