Date: Thu, 20 Dec 2012 00:50:04 +0000 (UTC) From: Olivier Houchard <cognet@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r244473 - head/sys/arm/arm Message-ID: <201212200050.qBK0o4p9024941@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: cognet Date: Thu Dec 20 00:50:04 2012 New Revision: 244473 URL: http://svnweb.freebsd.org/changeset/base/244473 Log: Use C comments instead of C++ comments. Spotted out by: gonzo (thanks, man) Modified: head/sys/arm/arm/busdma_machdep.c Modified: head/sys/arm/arm/busdma_machdep.c ============================================================================== --- head/sys/arm/arm/busdma_machdep.c Thu Dec 20 00:40:59 2012 (r244472) +++ head/sys/arm/arm/busdma_machdep.c Thu Dec 20 00:50:04 2012 (r244473) @@ -197,8 +197,10 @@ static void free_bounce_page(bus_dma_tag /* Default tag, as most drivers provide no parent tag. */ bus_dma_tag_t arm_root_dma_tag; -//---------------------------------------------------------------------------- -// Begin block of code useful to transplant to other implementations. +/* + * ---------------------------------------------------------------------------- + * Begin block of code useful to transplant to other implementations. + */ static uma_zone_t dmamap_zone; /* Cache of struct bus_dmamap items */ @@ -275,8 +277,10 @@ busdma_init(void *dummy) */ SYSINIT(busdma, SI_SUB_KMEM, SI_ORDER_THIRD, busdma_init, NULL); -// End block of code useful to transplant to other implementations. -//---------------------------------------------------------------------------- +/* + * End block of code useful to transplant to other implementations. + * ---------------------------------------------------------------------------- + */ /* * Return true if a match is made.
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201212200050.qBK0o4p9024941>