From owner-svn-src-head@FreeBSD.ORG Thu Oct 22 12:48:17 2009 Return-Path: Delivered-To: svn-src-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id D1264106568D; Thu, 22 Oct 2009 12:48:17 +0000 (UTC) (envelope-from rpaulo@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id C07918FC21; Thu, 22 Oct 2009 12:48:17 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id n9MCmHSl030409; Thu, 22 Oct 2009 12:48:17 GMT (envelope-from rpaulo@svn.freebsd.org) Received: (from rpaulo@localhost) by svn.freebsd.org (8.14.3/8.14.3/Submit) id n9MCmHMS030408; Thu, 22 Oct 2009 12:48:17 GMT (envelope-from rpaulo@svn.freebsd.org) Message-Id: <200910221248.n9MCmHMS030408@svn.freebsd.org> From: Rui Paulo Date: Thu, 22 Oct 2009 12:48:17 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r198366 - head/sys/dev/mwl X-BeenThere: svn-src-head@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for the src tree for head/-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 22 Oct 2009 12:48:17 -0000 Author: rpaulo Date: Thu Oct 22 12:48:17 2009 New Revision: 198366 URL: http://svn.freebsd.org/changeset/base/198366 Log: Don't use BUS_DMA_ALLOCNOW as that causes the attachment to fail on Cambria boards. MFC after: 2 months Modified: head/sys/dev/mwl/if_mwl_pci.c Modified: head/sys/dev/mwl/if_mwl_pci.c ============================================================================== --- head/sys/dev/mwl/if_mwl_pci.c Thu Oct 22 11:45:35 2009 (r198365) +++ head/sys/dev/mwl/if_mwl_pci.c Thu Oct 22 12:48:17 2009 (r198366) @@ -204,7 +204,7 @@ mwl_pci_attach(device_t dev) BUS_SPACE_MAXADDR, /* maxsize */ MWL_TXDESC, /* nsegments */ BUS_SPACE_MAXADDR, /* maxsegsize */ - BUS_DMA_ALLOCNOW, /* flags */ + 0, /* flags */ NULL, /* lockfunc */ NULL, /* lockarg */ &sc->sc_dmat)) {