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. _______________________________________________ svn-src-head@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/svn-src-head To unsubscribe, send any mail to "svn-src-head-unsubscr...@freebsd.org"