From 482d268d49a70c592bc8bfb05f68cca6334f025c Mon Sep 17 00:00:00 2001 From: Adrian Chadd Date: Mon, 24 Feb 2014 04:47:27 +0000 Subject: [PATCH] Link the AR8327 to the build. --- sys/dev/etherswitch/arswitch/arswitch.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/sys/dev/etherswitch/arswitch/arswitch.c b/sys/dev/etherswitch/arswitch/arswitch.c index fb39319fe01d..838fe288e829 100644 --- a/sys/dev/etherswitch/arswitch/arswitch.c +++ b/sys/dev/etherswitch/arswitch/arswitch.c @@ -66,6 +66,7 @@ #include #include #include +#include #include #include "mdio_if.h" @@ -293,6 +294,8 @@ arswitch_attach(device_t dev) ar8226_attach(sc); else if (AR8X16_IS_SWITCH(sc, AR8316)) ar8316_attach(sc); + else if (AR8X16_IS_SWITCH(sc, AR8327)) + ar8327_attach(sc); else return (ENXIO);