From b93c3c13c445bb7c6985aefc3f407807e4f19e62 Mon Sep 17 00:00:00 2001 From: Gregory Nutt Date: Fri, 9 Nov 2018 14:25:44 -0600 Subject: [PATCH] net/: Fix some compile errors introduce with recent networking patches. Found in build testing. --- net/netdev/netdev_register.c | 1 + net/pkt/pkt_conn.c | 1 + 2 files changed, 2 insertions(+) diff --git a/net/netdev/netdev_register.c b/net/netdev/netdev_register.c index 53e0780bb7..e07b40aa5f 100644 --- a/net/netdev/netdev_register.c +++ b/net/netdev/netdev_register.c @@ -52,6 +52,7 @@ #include #include #include +#include #include #include "utils/utils.h" diff --git a/net/pkt/pkt_conn.c b/net/pkt/pkt_conn.c index 526a870e6e..1a21528f16 100644 --- a/net/pkt/pkt_conn.c +++ b/net/pkt/pkt_conn.c @@ -53,6 +53,7 @@ #include #include #include +#include #include "devif/devif.h" #include "pkt/pkt.h"