From owner-svn-src-head@FreeBSD.ORG Fri Aug 3 18:40:45 2012 Return-Path: Delivered-To: svn-src-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 965121065675; Fri, 3 Aug 2012 18:40:45 +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 828678FC15; Fri, 3 Aug 2012 18:40:45 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.4/8.14.4) with ESMTP id q73Iej74056316; Fri, 3 Aug 2012 18:40:45 GMT (envelope-from jhb@svn.freebsd.org) Received: (from jhb@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q73Iej9L056314; Fri, 3 Aug 2012 18:40:45 GMT (envelope-from jhb@svn.freebsd.org) Message-Id: <201208031840.q73Iej9L056314@svn.freebsd.org> From: John Baldwin Date: Fri, 3 Aug 2012 18:40:45 +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: r239020 - head/sys/x86/x86 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: Fri, 03 Aug 2012 18:40:45 -0000 Author: jhb Date: Fri Aug 3 18:40:44 2012 New Revision: 239020 URL: http://svn.freebsd.org/changeset/base/239020 Log: Correct function name in comment. Submitted by: alc Modified: head/sys/x86/x86/busdma_machdep.c Modified: head/sys/x86/x86/busdma_machdep.c ============================================================================== --- head/sys/x86/x86/busdma_machdep.c Fri Aug 3 17:04:41 2012 (r239019) +++ head/sys/x86/x86/busdma_machdep.c Fri Aug 3 18:40:44 2012 (r239020) @@ -567,7 +567,7 @@ bus_dmamem_free(bus_dma_tag_t dmat, void /* * dmamem does not need to be bounced, so the map should be * NULL if malloc() was used and contig_dmamap if - * contigmalloc() was used. + * kmem_alloc_contig() was used. */ if (!(map == NULL || map == &contig_dmamap)) panic("bus_dmamem_free: Invalid map freed\n");