From 100fe59ff253384db6c560c2696eabb4816480b9 Mon Sep 17 00:00:00 2001 From: Gregory Nutt Date: Sun, 1 Sep 2019 17:49:44 -0600 Subject: [PATCH] net/arp/arp.h: Remove an unused structure definition. --- net/arp/arp.h | 23 ----------------------- 1 file changed, 23 deletions(-) diff --git a/net/arp/arp.h b/net/arp/arp.h index 16678cd7288..307c4989312 100644 --- a/net/arp/arp.h +++ b/net/arp/arp.h @@ -146,29 +146,6 @@ struct arp_send_s }; #endif -#ifdef CONFIG_NET_ARP_SEND -/* For symmetry with other protocols, a "connection" structure is - * provided. But it is a singleton for the case of ARP packet transfers. - */ - -struct arp_conn_s -{ - /* Common prologue of all connection structures. - * NOTE: The 'node' field is not used by the ARP implementation. - */ - - dq_entry_t node; /* Supports a doubly linked list */ - - /* This is a list of ARP callbacks. Each callback represents a thread - * that is stalled, waiting for a device-specific event. - */ - - FAR struct devif_callback_s *list; /* ARP callbacks */ - - /* No ARP-specific content */ -}; -#endif - #ifdef CONFIG_NET_ARP_SEND /* Used to notify a thread waiting for a particular ARP response */