Commit f2059694 authored by Hans Verkuil's avatar Hans Verkuil Committed by Mauro Carvalho Chehab

media: media tuner headers: fix kernel-doc warnings

Fix the following kernel-doc warnings:

drivers/media/tuners/it913x.h:28: warning: Function parameter or member 'fe' not described in 'it913x_platform_data'
drivers/media/tuners/tda827x.h:34: warning: wrong kernel-doc identifier on line:
 * Attach a tda827x tuner to the supplied frontend structure.
drivers/media/tuners/qt1010.h:20: warning: wrong kernel-doc identifier on line:
 * Attach a qt1010 tuner to the supplied frontend structure.
Signed-off-by: default avatarHans Verkuil <hverkuil-cisco@xs4all.nl>
Signed-off-by: default avatarMauro Carvalho Chehab <mchehab+huawei@kernel.org>
parent c214e6dd
...@@ -14,7 +14,7 @@ ...@@ -14,7 +14,7 @@
/** /**
* struct it913x_platform_data - Platform data for the it913x driver * struct it913x_platform_data - Platform data for the it913x driver
* @regmap: af9033 demod driver regmap. * @regmap: af9033 demod driver regmap.
* @dvb_frontend: af9033 demod driver DVB frontend. * @fe: af9033 demod driver DVB frontend.
* @role: Chip role, single or dual configuration. * @role: Chip role, single or dual configuration.
*/ */
......
...@@ -16,11 +16,11 @@ struct qt1010_config { ...@@ -16,11 +16,11 @@ struct qt1010_config {
}; };
/** /**
* Attach a qt1010 tuner to the supplied frontend structure. * qt1010_attach() - Attach a qt1010 tuner to the supplied frontend structure
* *
* @param fe frontend to attach to * @fe: frontend to attach to
* @param i2c i2c adapter to use * @i2c: i2c adapter to use
* @param cfg tuner hw based configuration * @cfg: tuner hw based configuration
* @return fe pointer on success, NULL on failure * @return fe pointer on success, NULL on failure
*/ */
#if IS_REACHABLE(CONFIG_MEDIA_TUNER_QT1010) #if IS_REACHABLE(CONFIG_MEDIA_TUNER_QT1010)
......
...@@ -30,12 +30,12 @@ struct tda827x_config ...@@ -30,12 +30,12 @@ struct tda827x_config
/** /**
* Attach a tda827x tuner to the supplied frontend structure. * tda827x_attach() - Attach a tda827x tuner to the supplied frontend structure
* *
* @param fe Frontend to attach to. * @fe: Frontend to attach to.
* @param addr i2c address of the tuner. * @addr: i2c address of the tuner.
* @param i2c i2c adapter to use. * @i2c: i2c adapter to use.
* @param cfg optional callback function pointers. * @cfg: optional callback function pointers.
* @return FE pointer on success, NULL on failure. * @return FE pointer on success, NULL on failure.
*/ */
#if IS_REACHABLE(CONFIG_MEDIA_TUNER_TDA827X) #if IS_REACHABLE(CONFIG_MEDIA_TUNER_TDA827X)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment