• Mauro Carvalho Chehab's avatar
    media: atomisp: stop producing hundreds of kernel-doc warnings · d929fb4e
    Mauro Carvalho Chehab authored
    A recent change on Kernel 4.15-rc1 causes all tags with
    /** to be handled as kernel-doc markups. Well, several
    atomisp modules, it doesn't use kernel-doc, but some other
    documentation markup (doxygen?).
    
    So, suppress all those warns by:
    	- replacing /**< by /**.
    	- replacing /** by /*.
    
    The core changes were done with:
    
    	for i in $(find drivers/staging/media/atomisp -type f); do sed 's,/\*\* ,/\*, ' -i $i; done
    	for i in $(find drivers/staging/media/atomisp -type f); do sed 's,/\*\*<,/\**,' -i $i; done
    	for i in drivers/staging/media/atomisp/pci/atomisp2/css2400/runtime/debug/src/ia_css_debug.c drivers/staging/media/atomisp/pci/atomisp2/css2400/sh_css_sp.c drivers/staging/media/atomisp/pci/atomisp2/css2400/runtime/rmgr/src/rmgr_vbuf.c; do perl -ne 's,\/\*\*$,/*,g; print $_'  $i > a && mv a $i; done;
    
    A few manual adjustments were made, where needed.
    Signed-off-by: default avatarMauro Carvalho Chehab <mchehab@s-opensource.com>
    Acked-by: default avatarSakari Ailus <sakari.ailus@linux.intel.com>
    d929fb4e
isp_op2w.h 16.8 KB