Date: Mon, 24 Feb 2014 04:47:27 +0000 (UTC) From: Adrian Chadd <adrian@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r262431 - head/sys/dev/etherswitch/arswitch Message-ID: <201402240447.s1O4lRdB017445@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
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);
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201402240447.s1O4lRdB017445>