diff options
author | Bartosz Golaszewski <bgolaszewski@baylibre.com> | 2020-06-26 18:53:21 +0300 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2020-06-26 23:38:16 +0300 |
commit | 1d0018a4306877f7ca4591ca6ea1d0099e2d0ef2 (patch) | |
tree | fd87b340a91afc5d14623387d67f4f7a6201c7f0 /drivers/net/phy | |
parent | 54e80ded36fc88d3ba2ca7891910baaa08671f8b (diff) | |
download | linux-1d0018a4306877f7ca4591ca6ea1d0099e2d0ef2.tar.xz |
net: phy: arrange headers in mdio_device.c alphabetically
Keeping the headers in alphabetical order is better for readability and
allows to easily see if given header is already included.
Signed-off-by: Bartosz Golaszewski <bgolaszewski@baylibre.com>
Reviewed-by: Andrew Lunn <andrew@lunn.ch>
Reviewed-by: Florian Fainelli <f.fainelli@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/phy')
-rw-r--r-- | drivers/net/phy/mdio_device.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/phy/mdio_device.c b/drivers/net/phy/mdio_device.c index c1d345c3cab3..f60443e48622 100644 --- a/drivers/net/phy/mdio_device.c +++ b/drivers/net/phy/mdio_device.c @@ -6,6 +6,7 @@ #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt +#include <linux/delay.h> #include <linux/errno.h> #include <linux/gpio.h> #include <linux/gpio/consumer.h> @@ -20,7 +21,6 @@ #include <linux/slab.h> #include <linux/string.h> #include <linux/unistd.h> -#include <linux/delay.h> void mdio_device_free(struct mdio_device *mdiodev) { |