diff options
author | adrian <adrian@FreeBSD.org> | 2015-12-26 02:31:39 +0000 |
---|---|---|
committer | adrian <adrian@FreeBSD.org> | 2015-12-26 02:31:39 +0000 |
commit | 86c6170821c7ea40b4763ab908848cbaffe2e55f (patch) | |
tree | 20fa4aeed5f541515950720a65a9e5dd0c163c1c /sys/dev/etherswitch/arswitch/arswitch_8226.c | |
parent | 77193eb303148e86085223efbbb1d69d90fe83ba (diff) | |
download | FreeBSD-src-86c6170821c7ea40b4763ab908848cbaffe2e55f.zip FreeBSD-src-86c6170821c7ea40b4763ab908848cbaffe2e55f.tar.gz |
[mdio] migrate mdiobus out of etherswitch and into a top-level device of its own.
The mdio driver interface is generally useful for devices that require
MDIO without the full MII bus interface. This lifts the driver/interface
out of etherswitch(4), and adds a mdio(4) man page.
Submitted by: Landon Fuller <landon@landonf.org>
Differential Revision: https://reviews.freebsd.org/D4606
Diffstat (limited to 'sys/dev/etherswitch/arswitch/arswitch_8226.c')
-rw-r--r-- | sys/dev/etherswitch/arswitch/arswitch_8226.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/dev/etherswitch/arswitch/arswitch_8226.c b/sys/dev/etherswitch/arswitch/arswitch_8226.c index 43d2281..5a86627 100644 --- a/sys/dev/etherswitch/arswitch/arswitch_8226.c +++ b/sys/dev/etherswitch/arswitch/arswitch_8226.c @@ -50,7 +50,7 @@ #include <dev/iicbus/iicbus.h> #include <dev/mii/mii.h> #include <dev/mii/miivar.h> -#include <dev/etherswitch/mdio.h> +#include <dev/mdio/mdio.h> #include <dev/etherswitch/etherswitch.h> |