Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

media: drivers: remove "/**" from non-kernel-doc comments

Several comments are wrongly tagged as kernel-doc, causing
those warnings:

drivers/media/rc/st_rc.c:98: warning: No description found for parameter 'irq'
drivers/media/rc/st_rc.c:98: warning: No description found for parameter 'data'
drivers/media/pci/solo6x10/solo6x10-enc.c:183: warning: No description found for parameter 'solo_dev'
drivers/media/pci/solo6x10/solo6x10-enc.c:183: warning: No description found for parameter 'ch'
drivers/media/pci/solo6x10/solo6x10-enc.c:183: warning: No description found for parameter 'qp'
drivers/media/usb/pwc/pwc-dec23.c:652: warning: Cannot understand *
on line 652 - I thought it was a doc line
drivers/media/usb/dvb-usb/cinergyT2-fe.c:40: warning: No description found for parameter 'op'
drivers/media/usb/dvb-usb/friio-fe.c:301: warning: Cannot understand * (reg, val) commad list to initialize this module.
on line 301 - I thought it was a doc line
drivers/media/rc/streamzap.c:201: warning: No description found for parameter 'urb'
drivers/media/rc/streamzap.c:333: warning: No description found for parameter 'intf'
drivers/media/rc/streamzap.c:333: warning: No description found for parameter 'id'
drivers/media/rc/streamzap.c:464: warning: No description found for parameter 'interface'
drivers/media/i2c/ov5647.c:432: warning: Cannot understand * @short Subdev core operations registration
on line 432 - I thought it was a doc line
drivers/media/usb/dvb-usb/friio.c:35: warning: No description found for parameter 'd'
drivers/media/usb/dvb-usb/friio.c:35: warning: No description found for parameter 'addr'
drivers/media/usb/dvb-usb/friio.c:35: warning: No description found for parameter 'wbuf'
drivers/media/usb/dvb-usb/friio.c:35: warning: No description found for parameter 'wlen'
drivers/media/usb/dvb-usb/friio.c:35: warning: No description found for parameter 'rbuf'
drivers/media/usb/dvb-usb/friio.c:35: warning: No description found for parameter 'rlen'
drivers/media/platform/vim2m.c:350: warning: No description found for parameter 'priv'
drivers/media/dvb-frontends/tua6100.c:34: warning: cannot understand function prototype: 'struct tua6100_priv '
drivers/media/platform/sti/hva/hva-h264.c:140: warning: cannot understand function prototype: 'struct hva_h264_stereo_video_sei '
drivers/media/platform/sti/hva/hva-h264.c:150: warning: Cannot understand * @frame_width: width in pixels of the buffer containing the input frame
on line 150 - I thought it was a doc line
drivers/media/platform/sti/hva/hva-h264.c:356: warning: Cannot understand * @ slice_size: slice size
on line 356 - I thought it was a doc line
drivers/media/platform/sti/hva/hva-h264.c:369: warning: Cannot understand * @ bitstream_size: bitstream size
on line 369 - I thought it was a doc line
drivers/media/platform/sti/hva/hva-h264.c:395: warning: Cannot understand * @seq_info: sequence information buffer
on line 395 - I thought it was a doc line
drivers/media/dvb-frontends/sp887x.c:137: warning: No description found for parameter 'fe'
drivers/media/dvb-frontends/sp887x.c:137: warning: No description found for parameter 'fw'
drivers/media/dvb-frontends/sp887x.c:287: warning: No description found for parameter 'n'
drivers/media/dvb-frontends/sp887x.c:287: warning: No description found for parameter 'd'
drivers/media/dvb-frontends/sp887x.c:287: warning: No description found for parameter 'quotient_i'
drivers/media/dvb-frontends/sp887x.c:287: warning: No description found for parameter 'quotient_f'
drivers/media/usb/ttusb-budget/dvb-ttusb-budget.c:83: warning: cannot understand function prototype: 'struct ttusb '
drivers/media/platform/sh_veu.c:277: warning: No description found for parameter 'priv'
drivers/media/dvb-frontends/zl10036.c:33: warning: cannot understand function prototype: 'int zl10036_debug; '
drivers/media/dvb-frontends/zl10036.c:179: warning: No description found for parameter 'state'
drivers/media/dvb-frontends/zl10036.c:179: warning: No description found for parameter 'frequency'
drivers/media/platform/rcar_fdp1.c:1139: warning: No description found for parameter 'priv'
drivers/media/platform/ti-vpe/vpe.c:933: warning: No description found for parameter 'priv'
drivers/media/usb/gspca/ov519.c:36: warning: No description found for parameter 'fmt'
drivers/media/usb/dvb-usb/dib0700_devices.c:3367: warning: No description found for parameter 'adap'

Signed-off-by: Mauro Carvalho Chehab <mchehab@s-opensource.com>

+48 -41
+3 -3
drivers/media/dvb-frontends/sp887x.c
··· 57 57 int ret; 58 58 59 59 if ((ret = i2c_transfer(state->i2c, &msg, 1)) != 1) { 60 - /** 60 + /* 61 61 * in case of soft reset we ignore ACK errors... 62 62 */ 63 63 if (!(reg == 0xf1a && data == 0x000 && ··· 130 130 131 131 #define BLOCKSIZE 30 132 132 #define FW_SIZE 0x4000 133 - /** 133 + /* 134 134 * load firmware and setup MPEG interface... 135 135 */ 136 136 static int sp887x_initial_setup (struct dvb_frontend* fe, const struct firmware *fw) ··· 279 279 return 0; 280 280 } 281 281 282 - /** 282 + /* 283 283 * estimates division of two 24bit numbers, 284 284 * derived from the ves1820/stv0299 driver code 285 285 */
+1 -1
drivers/media/dvb-frontends/tua6100.c
··· 1 - /** 1 + /* 2 2 * Driver for Infineon tua6100 pll. 3 3 * 4 4 * (c) 2006 Andrew de Quincey
+4 -4
drivers/media/dvb-frontends/zl10036.c
··· 1 - /** 1 + /* 2 2 * Driver for Zarlink zl10036 DVB-S silicon tuner 3 3 * 4 4 * Copyright (C) 2006 Tino Reichardt ··· 157 157 return ret; 158 158 } 159 159 160 - /** 160 + /* 161 161 * register map of the ZL10036/ZL10038 162 162 * 163 163 * reg[default] content ··· 219 219 if (fbw <= 28820) { 220 220 br = _BR_MAXIMUM; 221 221 } else { 222 - /** 222 + /* 223 223 * f(bw)=34,6MHz f(xtal)=10.111MHz 224 224 * br = (10111/34600) * 63 * 1/K = 14; 225 225 */ ··· 315 315 || (frequency > fe->ops.info.frequency_max)) 316 316 return -EINVAL; 317 317 318 - /** 318 + /* 319 319 * alpha = 1.35 for dvb-s 320 320 * fBW = (alpha*symbolrate)/(2*0.8) 321 321 * 1.35 / (2*0.8) = 27 / 32
+2 -2
drivers/media/i2c/ov5647.c
··· 428 428 } 429 429 #endif 430 430 431 - /** 432 - * @short Subdev core operations registration 431 + /* 432 + * Subdev core operations registration 433 433 */ 434 434 static const struct v4l2_subdev_core_ops ov5647_subdev_core_ops = { 435 435 .s_power = ov5647_sensor_power,
+1 -1
drivers/media/pci/solo6x10/solo6x10-enc.c
··· 175 175 return 0; 176 176 } 177 177 178 - /** 178 + /* 179 179 * Set channel Quality Profile (0-3). 180 180 */ 181 181 void solo_s_jpeg_qp(struct solo_dev *solo_dev, unsigned int ch,
+1 -1
drivers/media/platform/rcar_fdp1.c
··· 1132 1132 * mem2mem callbacks 1133 1133 */ 1134 1134 1135 - /** 1135 + /* 1136 1136 * job_ready() - check whether an instance is ready to be scheduled to run 1137 1137 */ 1138 1138 static int fdp1_m2m_job_ready(void *priv)
+1 -1
drivers/media/platform/sh_veu.c
··· 267 267 sh_veu_reg_write(veu, VEU_EIER, 1); /* enable interrupt in VEU */ 268 268 } 269 269 270 - /** 270 + /* 271 271 * sh_veu_device_run() - prepares and starts the device 272 272 * 273 273 * This will be called by the framework when it decides to schedule a particular
+13 -5
drivers/media/platform/sti/hva/hva-h264.c
··· 134 134 SEI_FRAME_PACKING_ARRANGEMENT = 45 135 135 }; 136 136 137 - /** 137 + /* 138 138 * stereo Video Info struct 139 139 */ 140 140 struct hva_h264_stereo_video_sei { ··· 146 146 u8 right_view_self_contained_flag; 147 147 }; 148 148 149 - /** 149 + /* 150 + * struct hva_h264_td 151 + * 150 152 * @frame_width: width in pixels of the buffer containing the input frame 151 153 * @frame_height: height in pixels of the buffer containing the input frame 152 154 * @frame_num: the parameter to be written in the slice header ··· 354 352 u32 addr_brc_in_out_parameter; 355 353 }; 356 354 357 - /** 355 + /* 356 + * struct hva_h264_slice_po 357 + * 358 358 * @ slice_size: slice size 359 359 * @ slice_start_time: start time 360 360 * @ slice_stop_time: stop time ··· 369 365 u32 slice_num; 370 366 }; 371 367 372 - /** 368 + /* 369 + * struct hva_h264_po 370 + * 373 371 * @ bitstream_size: bitstream size 374 372 * @ dct_bitstream_size: dtc bitstream size 375 373 * @ stuffing_bits: number of stuffing bits inserted by the encoder ··· 397 391 struct hva_h264_po po; 398 392 }; 399 393 400 - /** 394 + /* 395 + * struct hva_h264_ctx 396 + * 401 397 * @seq_info: sequence information buffer 402 398 * @ref_frame: reference frame buffer 403 399 * @rec_frame: reconstructed frame buffer
+1 -1
drivers/media/platform/ti-vpe/vpe.c
··· 926 926 * mem2mem callbacks 927 927 */ 928 928 929 - /** 929 + /* 930 930 * job_ready() - check whether an instance is ready to be scheduled to run 931 931 */ 932 932 static int job_ready(void *priv)
+1 -1
drivers/media/platform/vim2m.c
··· 343 343 * mem2mem callbacks 344 344 */ 345 345 346 - /** 346 + /* 347 347 * job_ready() - check whether an instance is ready to be scheduled to run 348 348 */ 349 349 static int job_ready(void *priv)
+3 -3
drivers/media/rc/st_rc.c
··· 49 49 #define IRB_RX_NOISE_SUPPR 0x5c /* noise suppression */ 50 50 #define IRB_RX_POLARITY_INV 0x68 /* polarity inverter */ 51 51 52 - /** 52 + /* 53 53 * IRQ set: Enable full FIFO 1 -> bit 3; 54 54 * Enable overrun IRQ 1 -> bit 2; 55 55 * Enable last symbol IRQ 1 -> bit 1: ··· 72 72 ir_raw_event_store(rdev, &ev); 73 73 } 74 74 75 - /** 75 + /* 76 76 * RX graphical example to better understand the difference between ST IR block 77 77 * output and standard definition used by LIRC (and most of the world!) 78 78 * ··· 317 317 device_init_wakeup(dev, true); 318 318 dev_pm_set_wake_irq(dev, rc_dev->irq); 319 319 320 - /** 320 + /* 321 321 * for LIRC_MODE_MODE2 or LIRC_MODE_PULSE or LIRC_MODE_RAW 322 322 * lircd expects a long space first before a signal train to sync. 323 323 */
+3 -3
drivers/media/rc/streamzap.c
··· 191 191 sz_push_full_space(sz, value & SZ_SPACE_MASK); 192 192 } 193 193 194 - /** 194 + /* 195 195 * streamzap_callback - usb IRQ handler callback 196 196 * 197 197 * This procedure is invoked on reception of data from ··· 321 321 return NULL; 322 322 } 323 323 324 - /** 324 + /* 325 325 * streamzap_probe 326 326 * 327 327 * Called by usb-core to associated with a candidate device ··· 450 450 return retval; 451 451 } 452 452 453 - /** 453 + /* 454 454 * streamzap_disconnect 455 455 * 456 456 * Called by the usb core when the device is removed from the system.
+1 -1
drivers/media/usb/dvb-usb/cinergyT2-fe.c
··· 26 26 #include "cinergyT2.h" 27 27 28 28 29 - /** 29 + /* 30 30 * convert linux-dvb frontend parameter set into TPS. 31 31 * See ETSI ETS-300744, section 4.6.2, table 9 for details. 32 32 *
+4 -4
drivers/media/usb/dvb-usb/dib0700_devices.c
··· 1677 1677 return -EINVAL; 1678 1678 } 1679 1679 1680 - /** Update PLL if needed ratio **/ 1680 + /* Update PLL if needed ratio */ 1681 1681 state->dib8000_ops.update_pll(fe, &dib8090_pll_config_12mhz, fe->dtv_property_cache.bandwidth_hz / 1000, 0); 1682 1682 1683 - /** Get optimize PLL ratio to remove spurious **/ 1683 + /* Get optimize PLL ratio to remove spurious */ 1684 1684 pll_ratio = dib8090_compute_pll_parameters(fe); 1685 1685 if (pll_ratio == 17) 1686 1686 timf = 21387946; ··· 1691 1691 else 1692 1692 timf = 18179756; 1693 1693 1694 - /** Update ratio **/ 1694 + /* Update ratio */ 1695 1695 state->dib8000_ops.update_pll(fe, &dib8090_pll_config_12mhz, fe->dtv_property_cache.bandwidth_hz / 1000, pll_ratio); 1696 1696 1697 1697 state->dib8000_ops.ctrl_timf(fe, DEMOD_TIMF_SET, timf); ··· 3357 3357 return state->sleep(fe); 3358 3358 } 3359 3359 3360 - /** 3360 + /* 3361 3361 * novatd_frontend_attach - Nova-TD specific attach 3362 3362 * 3363 3363 * Nova-TD has GPIO0, 1 and 2 for LEDs. So do not fiddle with them except for
+1 -1
drivers/media/usb/dvb-usb/friio-fe.c
··· 297 297 } 298 298 299 299 300 - /** 300 + /* 301 301 * (reg, val) commad list to initialize this module. 302 302 * captured on a Windows box. 303 303 */
+1 -1
drivers/media/usb/dvb-usb/friio.c
··· 21 21 22 22 DVB_DEFINE_MOD_OPT_ADAPTER_NR(adapter_nr); 23 23 24 - /** 24 + /* 25 25 * Indirect I2C access to the PLL via FE. 26 26 * whole I2C protocol data to the PLL is sent via the FE's I2C register. 27 27 * This is done by a control msg to the FE with the I2C data accompanied, and
+1 -1
drivers/media/usb/gspca/ov519.c
··· 1 - /** 1 + /* 2 2 * OV519 driver 3 3 * 4 4 * Copyright (C) 2008-2011 Jean-François Moine <moinejf@free.fr>
+3 -4
drivers/media/usb/pwc/pwc-dec23.c
··· 649 649 } 650 650 651 651 /** 652 - * 653 652 * Uncompress a pwc23 buffer. 654 - * 655 - * src: raw data 656 - * dst: image output 653 + * @pdev: pointer to pwc device's internal struct 654 + * @src: raw data 655 + * @dst: image output 657 656 */ 658 657 void pwc_dec23_decompress(struct pwc_device *pdev, 659 658 const void *src,
+3 -3
drivers/media/usb/ttusb-budget/dvb-ttusb-budget.c
··· 76 76 #define TTUSB_REV_2_2 0x22 77 77 #define TTUSB_BUDGET_NAME "ttusb_stc_fw" 78 78 79 - /** 79 + /* 80 80 * since we're casting (struct ttusb*) <-> (struct dvb_demux*) around 81 81 * the dvb_demux field must be the first in struct!! 82 82 */ ··· 713 713 } 714 714 } 715 715 716 - /** 716 + /* 717 717 * if length is valid and we reached the end: 718 718 * goto next muxpack 719 719 */ ··· 729 729 /* maximum bytes, until we know the length */ 730 730 ttusb->muxpack_len = 2; 731 731 732 - /** 732 + /* 733 733 * no muxpacks left? 734 734 * return to search-sync state 735 735 */