diff options
author | adrian <adrian@FreeBSD.org> | 2015-12-27 07:39:44 +0000 |
---|---|---|
committer | adrian <adrian@FreeBSD.org> | 2015-12-27 07:39:44 +0000 |
commit | 839ab24e1e9db5b4373711c6c51f1e62d56e8536 (patch) | |
tree | ba8e71f9009272ab9bfa6d71e5d5efb76615d2a4 /sys/mips/atheros | |
parent | d428361db1dfb8d01c4838b1c6212d34b6b4b3d0 (diff) | |
download | FreeBSD-src-839ab24e1e9db5b4373711c6c51f1e62d56e8536.zip FreeBSD-src-839ab24e1e9db5b4373711c6c51f1e62d56e8536.tar.gz |
Fix missing path conversion from the previous commit to shuffle mdio around.
It turns out the recent work to cut down the number of atheros kernels built
didnt include one with ARGE_MDIO defined..
Diffstat (limited to 'sys/mips/atheros')
-rw-r--r-- | sys/mips/atheros/if_arge.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/mips/atheros/if_arge.c b/sys/mips/atheros/if_arge.c index 6a22f3f..792ca5d 100644 --- a/sys/mips/atheros/if_arge.c +++ b/sys/mips/atheros/if_arge.c @@ -78,7 +78,7 @@ __FBSDID("$FreeBSD$"); #include "opt_arge.h" #if defined(ARGE_MDIO) -#include <dev/etherswitch/mdio.h> +#include <dev/mdio/mdio.h> #include <dev/etherswitch/miiproxy.h> #include "mdio_if.h" #endif |