svn commit: r262431 - head/sys/dev/etherswitch/arswitch
Adrian Chadd
adrian at FreeBSD.org
Mon Feb 24 04:47:27 UTC 2014
Author: adrian
Date: Mon Feb 24 04:47:27 2014
New Revision: 262431
URL: http://svnweb.freebsd.org/changeset/base/262431
Log:
Link the AR8327 to the build.
Modified:
head/sys/dev/etherswitch/arswitch/arswitch.c
Modified: head/sys/dev/etherswitch/arswitch/arswitch.c
==============================================================================
--- head/sys/dev/etherswitch/arswitch/arswitch.c Mon Feb 24 04:47:16 2014 (r262430)
+++ head/sys/dev/etherswitch/arswitch/arswitch.c Mon Feb 24 04:47:27 2014 (r262431)
@@ -66,6 +66,7 @@
#include <dev/etherswitch/arswitch/arswitch_8216.h>
#include <dev/etherswitch/arswitch/arswitch_8226.h>
#include <dev/etherswitch/arswitch/arswitch_8316.h>
+#include <dev/etherswitch/arswitch/arswitch_8327.h>
#include <dev/etherswitch/arswitch/arswitch_9340.h>
#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);
More information about the svn-src-all
mailing list