diff options
author | Masahiro Yamada <yamada.masahiro@socionext.com> | 2020-05-20 12:31:24 +0900 |
---|---|---|
committer | Masahiro Yamada <yamada.masahiro@socionext.com> | 2020-05-22 11:21:06 +0900 |
commit | e6396fcab2aedaf3f6e8f84d871879f773c49587 (patch) | |
tree | 81a5279e277adde68b02a19279db81c20215033d /arch/arm/mach-uniphier | |
parent | f49049a8ec46ff00ddd8f023bf0b5935b5317865 (diff) |
ARM: uniphier: remove #include <net.h> again from micro-support-card.c
I do not understand the changes made to this file by
commit 90526e9fbac4 ("common: Drop net.h from common header").
git show 90526e9fbac4 -- arch/arm/mach-uniphier/micro-support-card.c
The necessary declaration is already included by <netdev.h> at line 112.
It also moved the <dm/of.h> inclusion, but I do not understand the
motivation of doing so, either.
Simply revert the changes made to this file.
Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
Diffstat (limited to 'arch/arm/mach-uniphier')
-rw-r--r-- | arch/arm/mach-uniphier/micro-support-card.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/arch/arm/mach-uniphier/micro-support-card.c b/arch/arm/mach-uniphier/micro-support-card.c index 18435dc361..d23c0bd129 100644 --- a/arch/arm/mach-uniphier/micro-support-card.c +++ b/arch/arm/mach-uniphier/micro-support-card.c @@ -6,10 +6,9 @@ */ #include <common.h> +#include <dm/of.h> #include <fdt_support.h> #include <log.h> -#include <net.h> -#include <dm/of.h> #include <linux/ctype.h> #include <linux/delay.h> #include <linux/io.h> |