From owner-svn-src-stable@FreeBSD.ORG Mon May 18 21:58:58 2009 Return-Path: Delivered-To: svn-src-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 54F911065676; Mon, 18 May 2009 21:58:58 +0000 (UTC) (envelope-from jhb@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 42AC08FC2C; Mon, 18 May 2009 21:58:58 +0000 (UTC) (envelope-from jhb@FreeBSD.org) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id n4ILww3W076122; Mon, 18 May 2009 21:58:58 GMT (envelope-from jhb@svn.freebsd.org) Received: (from jhb@localhost) by svn.freebsd.org (8.14.3/8.14.3/Submit) id n4ILwwLI076121; Mon, 18 May 2009 21:58:58 GMT (envelope-from jhb@svn.freebsd.org) Message-Id: <200905182158.n4ILwwLI076121@svn.freebsd.org> From: John Baldwin Date: Mon, 18 May 2009 21:58:58 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-6@freebsd.org X-SVN-Group: stable-6 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r192346 - in stable/6/sys: . contrib/pf dev/cxgb net X-BeenThere: svn-src-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for all the -stable branches of the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 18 May 2009 21:58:59 -0000 Author: jhb Date: Mon May 18 21:58:57 2009 New Revision: 192346 URL: http://svn.freebsd.org/changeset/base/192346 Log: MFC: Remove dependency of vlan.ko on miibus.ko. Modified: stable/6/sys/ (props changed) stable/6/sys/contrib/pf/ (props changed) stable/6/sys/dev/cxgb/ (props changed) stable/6/sys/net/if_vlan.c Modified: stable/6/sys/net/if_vlan.c ============================================================================== --- stable/6/sys/net/if_vlan.c Mon May 18 21:58:21 2009 (r192345) +++ stable/6/sys/net/if_vlan.c Mon May 18 21:58:57 2009 (r192346) @@ -315,7 +315,6 @@ static moduledata_t vlan_mod = { }; DECLARE_MODULE(if_vlan, vlan_mod, SI_SUB_PSEUDO, SI_ORDER_ANY); -MODULE_DEPEND(if_vlan, miibus, 1, 1, 1); static struct ifnet * vlan_clone_match_ethertag(struct if_clone *ifc, const char *name, int *tag)