net/netlink: Fix cosmetic issues, mostly typo fixes.

This commit is contained in:
Gregory Nutt
2019-11-04 14:06:07 -06:00
parent 48d1d9d84f
commit 38e527deeb
4 changed files with 33 additions and 34 deletions
+1 -5
View File
@@ -71,19 +71,15 @@
/* RTM_NEWNEIGH, RTM_DELNEIGH, RTM_GETNEIGH
* Add, remove or receive information about a neighbor table entry (e.g.,
* an ARP entry). The message contains an ndmsg structure.
* an ARP entry). The message contains an 'ndmsg' structure.
*/
struct nlroute_sendto_request_s
{
struct nlmsghdr hdr;
struct ndmsg msg;
uint8_t data[1];
};
#define SIZEOF_NLROUTE_SENDTO_REQUEST_S(n) \
(sizeof(struct nlroute_sendto_request_s) + (n) - 1)
struct nlroute_recvfrom_response_s
{
struct nlmsghdr hdr;