diff options
author | Calvin Johnson <calvin.johnson@oss.nxp.com> | 2021-03-15 11:49:05 +0100 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2021-03-16 19:10:00 +0100 |
commit | 1bf343665057312167750509b0c48e8299293ac5 (patch) | |
tree | 34f5f3cc982847b6637d3272f2bdf82617479fef /drivers/net/mdio/of_mdio.c | |
parent | Merge branch 'ionic-tx-updates' (diff) | |
download | linux-1bf343665057312167750509b0c48e8299293ac5.tar.xz linux-1bf343665057312167750509b0c48e8299293ac5.zip |
net: mdio: Alphabetically sort header inclusion
Alphabetically sort header inclusion
Signed-off-by: Calvin Johnson <calvin.johnson@oss.nxp.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/mdio/of_mdio.c')
-rw-r--r-- | drivers/net/mdio/of_mdio.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/drivers/net/mdio/of_mdio.c b/drivers/net/mdio/of_mdio.c index ea9d5855fb52..094494a68ddf 100644 --- a/drivers/net/mdio/of_mdio.c +++ b/drivers/net/mdio/of_mdio.c @@ -8,17 +8,17 @@ * out of the OpenFirmware device tree and using it to populate an mii_bus. */ -#include <linux/kernel.h> #include <linux/device.h> -#include <linux/netdevice.h> #include <linux/err.h> -#include <linux/phy.h> -#include <linux/phy_fixed.h> +#include <linux/kernel.h> +#include <linux/module.h> +#include <linux/netdevice.h> #include <linux/of.h> #include <linux/of_irq.h> #include <linux/of_mdio.h> #include <linux/of_net.h> -#include <linux/module.h> +#include <linux/phy.h> +#include <linux/phy_fixed.h> #define DEFAULT_GPIO_RESET_DELAY 10 /* in microseconds */ |