diff options
author | Simon Glass | 2020-07-19 10:15:58 -0600 |
---|---|---|
committer | Tom Rini | 2020-08-03 22:19:54 -0400 |
commit | 41ba040e169dce7b575ab108e752deb8431d9809 (patch) | |
tree | 9876a729a6c7094b74ae73133a356660444841c2 | |
parent | f125e3cc1217c630dab1673c2ca181cc754b434b (diff) |
net: Drop duplicate include of dm.h in pcnet.c
This file includes the header twice. Drop the second one.
Signed-off-by: Simon Glass <sjg@chromium.org>
-rw-r--r-- | drivers/net/pcnet.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/drivers/net/pcnet.c b/drivers/net/pcnet.c index 559560860bd..ad5ac6618f7 100644 --- a/drivers/net/pcnet.c +++ b/drivers/net/pcnet.c @@ -10,7 +10,6 @@ #include <cpu_func.h> #include <dm.h> #include <log.h> -#include <dm.h> #include <malloc.h> #include <memalign.h> #include <net.h> |