This is an automatic generated email to let you know that the following patch 
were queued:

Subject: media: atomisp: stop producing hundreds of kernel-doc warnings
Author:  Mauro Carvalho Chehab <[email protected]>
Date:    Wed Nov 29 03:16:17 2017 -0500

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: Mauro Carvalho Chehab <[email protected]>
Acked-by: Sakari Ailus <[email protected]>

 .../staging/media/atomisp/include/linux/atomisp.h  |  34 +--
 .../media/atomisp/pci/atomisp2/atomisp_cmd.c       |   2 +-
 .../atomisp/pci/atomisp2/atomisp_compat_css20.c    |   2 +-
 .../atomisp/pci/atomisp2/atomisp_compat_ioctl32.h  |  16 +-
 .../media/atomisp/pci/atomisp2/atomisp_subdev.h    |   2 +-
 .../atomisp2/css2400/base/circbuf/src/circbuf.c    |  26 +--
 .../camera/pipe/interface/ia_css_pipe_binarydesc.h |  34 +--
 .../camera/pipe/interface/ia_css_pipe_util.h       |   2 +-
 .../css2400/camera/util/interface/ia_css_util.h    |  18 +-
 .../css_2401_csi2p_system/host/csi_rx_private.h    |   2 +-
 .../css_2401_csi2p_system/host/ibuf_ctrl_private.h |   4 +-
 .../css2400/css_2401_csi2p_system/host/isys_irq.c  |   2 +-
 .../css_2401_csi2p_system/host/isys_irq_private.h  |   4 +-
 .../host/isys_stream2mmio_private.h                |   4 +-
 .../css_2401_csi2p_system/host/pixelgen_private.h  |   2 +-
 .../css_2401_csi2p_system/isys_dma_global.h        |   4 +-
 .../css_2401_csi2p_system/pixelgen_global.h        |   2 +-
 .../css2400/css_2401_csi2p_system/system_global.h  |   8 +-
 .../atomisp/pci/atomisp2/css2400/css_api_version.h |   2 +-
 .../css2400/hive_isp_css_common/host/gp_timer.c    |   2 +-
 .../hive_isp_css_include/host/csi_rx_public.h      |   4 +-
 .../hive_isp_css_include/host/ibuf_ctrl_public.h   |   4 +-
 .../css2400/hive_isp_css_include/host/isp_op1w.h   |  98 ++++----
 .../css2400/hive_isp_css_include/host/isp_op2w.h   |  78 +++----
 .../host/isys_stream2mmio_public.h                 |   4 +-
 .../hive_isp_css_include/host/pixelgen_public.h    |   4 +-
 .../hive_isp_css_include/host/ref_vector_func.h    | 144 ++++++------
 .../css2400/hive_isp_css_include/math_support.h    |   2 +-
 .../css2400/hive_isp_css_include/string_support.h  |   8 +-
 .../css2400/hive_isp_css_shared/host/tag.c         |   4 +-
 .../media/atomisp/pci/atomisp2/css2400/ia_css.h    |   2 +-
 .../media/atomisp/pci/atomisp2/css2400/ia_css_3a.h |  38 +--
 .../pci/atomisp2/css2400/ia_css_acc_types.h        | 216 ++++++++---------
 .../atomisp/pci/atomisp2/css2400/ia_css_buffer.h   |  32 +--
 .../atomisp/pci/atomisp2/css2400/ia_css_control.h  |  22 +-
 .../pci/atomisp2/css2400/ia_css_device_access.h    |   2 +-
 .../atomisp/pci/atomisp2/css2400/ia_css_dvs.h      |  52 ++---
 .../atomisp/pci/atomisp2/css2400/ia_css_env.h      |  40 ++--
 .../atomisp/pci/atomisp2/css2400/ia_css_err.h      |  18 +-
 .../pci/atomisp2/css2400/ia_css_event_public.h     |  68 +++---
 .../atomisp/pci/atomisp2/css2400/ia_css_firmware.h |  14 +-
 .../atomisp/pci/atomisp2/css2400/ia_css_frac.h     |  10 +-
 .../pci/atomisp2/css2400/ia_css_frame_format.h     |  62 ++---
 .../pci/atomisp2/css2400/ia_css_frame_public.h     | 120 +++++-----
 .../pci/atomisp2/css2400/ia_css_input_port.h       |  32 +--
 .../atomisp/pci/atomisp2/css2400/ia_css_irq.h      | 112 ++++-----
 .../atomisp/pci/atomisp2/css2400/ia_css_metadata.h |  24 +-
 .../atomisp/pci/atomisp2/css2400/ia_css_mipi.h     |  10 +-
 .../atomisp/pci/atomisp2/css2400/ia_css_mmu.h      |   4 +-
 .../atomisp/pci/atomisp2/css2400/ia_css_morph.h    |   6 +-
 .../pci/atomisp2/css2400/ia_css_pipe_public.h      | 128 +++++-----
 .../atomisp/pci/atomisp2/css2400/ia_css_prbs.h     |  12 +-
 .../pci/atomisp2/css2400/ia_css_properties.h       |   6 +-
 .../atomisp/pci/atomisp2/css2400/ia_css_shading.h  |   6 +-
 .../atomisp/pci/atomisp2/css2400/ia_css_stream.h   |   4 +-
 .../pci/atomisp2/css2400/ia_css_stream_format.h    |  90 +++----
 .../pci/atomisp2/css2400/ia_css_stream_public.h    | 148 ++++++------
 .../atomisp/pci/atomisp2/css2400/ia_css_timer.h    |  30 +--
 .../atomisp/pci/atomisp2/css2400/ia_css_tpg.h      |   8 +-
 .../atomisp/pci/atomisp2/css2400/ia_css_types.h    | 258 ++++++++++-----------
 .../atomisp/pci/atomisp2/css2400/ia_css_version.h  |   6 +-
 .../css2400/isp/kernels/aa/aa_2/ia_css_aa2_types.h |   6 +-
 .../isp/kernels/anr/anr_1.0/ia_css_anr_types.h     |   6 +-
 .../isp/kernels/anr/anr_2/ia_css_anr2_types.h      |   4 +-
 .../isp/kernels/anr/anr_2/ia_css_anr_param.h       |   2 +-
 .../bayer_ls/bayer_ls_1.0/ia_css_bayer_ls_param.h  |   2 +-
 .../css2400/isp/kernels/bh/bh_2/ia_css_bh_types.h  |   4 +-
 .../css2400/isp/kernels/bnlm/ia_css_bnlm_types.h   |  36 +--
 .../isp/kernels/bnr/bnr2_2/ia_css_bnr2_2_types.h   |  34 +--
 .../isp/kernels/cnr/cnr_2/ia_css_cnr2_types.h      |  20 +-
 .../conversion_1.0/ia_css_conversion_types.h       |   8 +-
 .../isp/kernels/crop/crop_1.0/ia_css_crop_param.h  |   2 +-
 .../isp/kernels/crop/crop_1.0/ia_css_crop_types.h  |   2 +-
 .../isp/kernels/csc/csc_1.0/ia_css_csc_types.h     |   8 +-
 .../isp/kernels/ctc/ctc2/ia_css_ctc2_param.h       |  12 +-
 .../isp/kernels/ctc/ctc2/ia_css_ctc2_types.h       |  10 +-
 .../isp/kernels/ctc/ctc_1.0/ia_css_ctc_types.h     |  38 +--
 .../isp/kernels/de/de_1.0/ia_css_de_types.h        |  10 +-
 .../css2400/isp/kernels/de/de_2/ia_css_de2_types.h |  10 +-
 .../isp/kernels/dp/dp_1.0/ia_css_dp_types.h        |   8 +-
 .../css2400/isp/kernels/dpc2/ia_css_dpc2_types.h   |   6 +-
 .../isp/kernels/dvs/dvs_1.0/ia_css_dvs_param.h     |   2 +-
 .../isp/kernels/dvs/dvs_1.0/ia_css_dvs_types.h     |   2 +-
 .../isp/kernels/eed1_8/ia_css_eed1_8_types.h       |  82 +++----
 .../isp/kernels/fc/fc_1.0/ia_css_formats_types.h   |   6 +-
 .../isp/kernels/fpn/fpn_1.0/ia_css_fpn_types.h     |  14 +-
 .../isp/kernels/gc/gc_1.0/ia_css_gc_types.h        |  32 +--
 .../css2400/isp/kernels/gc/gc_2/ia_css_gc2_types.h |  14 +-
 .../css2400/isp/kernels/hdr/ia_css_hdr_types.h     |  26 +--
 .../ipu2_io_ls/bayer_io_ls/ia_css_bayer_io.host.c  |   2 +-
 .../yuv444_io_ls/ia_css_yuv444_io.host.c           |   2 +-
 .../kernels/macc/macc1_5/ia_css_macc1_5_types.h    |  16 +-
 .../isp/kernels/macc/macc_1.0/ia_css_macc_types.h  |  12 +-
 .../css2400/isp/kernels/ob/ob2/ia_css_ob2_types.h  |  12 +-
 .../isp/kernels/ob/ob_1.0/ia_css_ob_types.h        |  26 +--
 .../output/output_1.0/ia_css_output_param.h        |   2 +-
 .../output/output_1.0/ia_css_output_types.h        |   8 +-
 .../kernels/qplane/qplane_2/ia_css_qplane_types.h  |   2 +-
 .../isp/kernels/raw/raw_1.0/ia_css_raw_types.h     |   2 +-
 .../isp/kernels/ref/ref_1.0/ia_css_ref_param.h     |   2 +-
 .../isp/kernels/ref/ref_1.0/ia_css_ref_types.h     |   2 +-
 .../isp/kernels/s3a/s3a_1.0/ia_css_s3a_types.h     |  98 ++++----
 .../kernels/s3a_stat_ls/ia_css_s3a_stat_ls_param.h |   2 +-
 .../css2400/isp/kernels/sc/sc_1.0/ia_css_sc.host.h |   4 +-
 .../isp/kernels/sc/sc_1.0/ia_css_sc_types.h        |  42 ++--
 .../kernels/sdis/common/ia_css_sdis_common_types.h | 104 ++++-----
 .../isp/kernels/sdis/sdis_1.0/ia_css_sdis_types.h  |  20 +-
 .../isp/kernels/sdis/sdis_2/ia_css_sdis2_types.h   |  40 ++--
 .../isp/kernels/tdf/tdf_1.0/ia_css_tdf_types.h     |  38 +--
 .../isp/kernels/tnr/tnr3/ia_css_tnr3_types.h       |  26 +--
 .../isp/kernels/tnr/tnr_1.0/ia_css_tnr_types.h     |  10 +-
 .../isp/kernels/vf/vf_1.0/ia_css_vf_param.h        |   4 +-
 .../isp/kernels/vf/vf_1.0/ia_css_vf_types.h        |   4 +-
 .../isp/kernels/wb/wb_1.0/ia_css_wb_types.h        |  14 +-
 .../isp/kernels/xnr/xnr_1.0/ia_css_xnr.host.c      |   2 +-
 .../isp/kernels/xnr/xnr_1.0/ia_css_xnr_param.h     |   2 +-
 .../isp/kernels/xnr/xnr_1.0/ia_css_xnr_types.h     |  20 +-
 .../isp/kernels/xnr/xnr_3.0/ia_css_xnr3_types.h    |  30 +--
 .../isp/kernels/ynr/ynr_1.0/ia_css_ynr_types.h     |  28 +--
 .../isp/kernels/ynr/ynr_2/ia_css_ynr2_types.h      |  40 ++--
 .../yuv_ls/yuv_ls_1.0/ia_css_yuv_ls_param.h        |   2 +-
 .../atomisp/pci/atomisp2/css2400/memory_realloc.c  |   2 +-
 .../runtime/binary/interface/ia_css_binary.h       |   2 +-
 .../atomisp2/css2400/runtime/binary/src/binary.c   |   2 +-
 .../pci/atomisp2/css2400/runtime/bufq/src/bufq.c   |   2 +-
 .../css2400/runtime/debug/interface/ia_css_debug.h |  30 +--
 .../css2400/runtime/debug/src/ia_css_debug.c       |  10 +-
 .../pci/atomisp2/css2400/runtime/event/src/event.c |   4 +-
 .../atomisp2/css2400/runtime/eventq/src/eventq.c   |   2 +-
 .../css2400/runtime/frame/interface/ia_css_frame.h |  22 +-
 .../pci/atomisp2/css2400/runtime/frame/src/frame.c |   2 +-
 .../pci/atomisp2/css2400/runtime/ifmtr/src/ifmtr.c |   2 +-
 .../css2400/runtime/inputfifo/src/inputfifo.c      |   2 +-
 .../isp_param/interface/ia_css_isp_param_types.h   |   6 +-
 .../css2400/runtime/isp_param/src/isp_param.c      |   2 +-
 .../css2400/runtime/isys/interface/ia_css_isys.h   |   6 +-
 .../css2400/runtime/isys/src/csi_rx_rmgr.c         |   2 +-
 .../css2400/runtime/isys/src/ibuf_ctrl_rmgr.c      |   2 +-
 .../css2400/runtime/isys/src/isys_dma_rmgr.c       |   2 +-
 .../atomisp2/css2400/runtime/isys/src/isys_init.c  |   2 +-
 .../runtime/isys/src/isys_stream2mmio_rmgr.c       |   2 +-
 .../pci/atomisp2/css2400/runtime/isys/src/rx.c     |   2 +-
 .../css2400/runtime/isys/src/virtual_isys.c        |   8 +-
 .../runtime/pipeline/interface/ia_css_pipeline.h   |  28 +--
 .../css2400/runtime/pipeline/src/pipeline.c        |   8 +-
 .../css2400/runtime/queue/interface/ia_css_queue.h |  22 +-
 .../css2400/runtime/queue/src/queue_access.c       |   2 +-
 .../pci/atomisp2/css2400/runtime/rmgr/src/rmgr.c   |   4 +-
 .../atomisp2/css2400/runtime/rmgr/src/rmgr_vbuf.c  |  26 +--
 .../runtime/spctrl/interface/ia_css_spctrl.h       |  20 +-
 .../runtime/spctrl/interface/ia_css_spctrl_comm.h  |  14 +-
 .../atomisp2/css2400/runtime/spctrl/src/spctrl.c   |   4 +-
 .../pci/atomisp2/css2400/runtime/timer/src/timer.c |   2 +-
 .../media/atomisp/pci/atomisp2/css2400/sh_css.c    |  68 +++---
 .../atomisp/pci/atomisp2/css2400/sh_css_internal.h |  22 +-
 .../atomisp/pci/atomisp2/css2400/sh_css_legacy.h   |   2 +-
 .../atomisp/pci/atomisp2/css2400/sh_css_mipi.c     |   4 +-
 .../atomisp/pci/atomisp2/css2400/sh_css_params.h   |   4 +-
 .../media/atomisp/pci/atomisp2/css2400/sh_css_sp.c |  18 +-
 .../atomisp/pci/atomisp2/css2400/sh_css_struct.h   |   2 +-
 160 files changed, 1746 insertions(+), 1746 deletions(-)

---

<diff discarded since it is too big>

_______________________________________________
linuxtv-commits mailing list
[email protected]
https://www.linuxtv.org/cgi-bin/mailman/listinfo/linuxtv-commits

Reply via email to