diff options
author | LABBE Corentin <clabbe.montjoie@gmail.com> | 2017-02-08 11:31:10 +0300 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2017-02-08 23:11:24 +0300 |
commit | bbf892849678ff9e25590cbf78d0202e35d7e41d (patch) | |
tree | f5b2b7a99314d0bbb4fca50025aff8533b968b71 /drivers | |
parent | deeb6376caeeab38d2cf616aea6f2ca3a4ecf0ed (diff) | |
download | linux-bbf892849678ff9e25590cbf78d0202e35d7e41d.tar.xz |
net: stmmac: remplace asm/io.h by linux/io.h
This patch fix the checkpatch warning about asm/io.h.
Sorting all includes in the process.
Signed-off-by: Corentin Labbe <clabbe.montjoie@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/net/ethernet/stmicro/stmmac/stmmac_mdio.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/net/ethernet/stmicro/stmmac/stmmac_mdio.c b/drivers/net/ethernet/stmicro/stmmac/stmmac_mdio.c index 738d5c754ac4..3fdc6ec6ebf0 100644 --- a/drivers/net/ethernet/stmicro/stmmac/stmmac_mdio.c +++ b/drivers/net/ethernet/stmicro/stmmac/stmmac_mdio.c @@ -20,13 +20,13 @@ Maintainer: Giuseppe Cavallaro <peppe.cavallaro@st.com> *******************************************************************************/ +#include <linux/io.h> #include <linux/mii.h> -#include <linux/phy.h> -#include <linux/slab.h> #include <linux/of.h> #include <linux/of_gpio.h> #include <linux/of_mdio.h> -#include <asm/io.h> +#include <linux/phy.h> +#include <linux/slab.h> #include "stmmac.h" |