aboutsummaryrefslogtreecommitdiff
path: root/drivers/media/dvb-frontends/zl10036.h
diff options
context:
space:
mode:
authorGravatar Mauro Carvalho Chehab <mchehab@s-opensource.com> 2017-11-29 12:39:19 -0500
committerGravatar Mauro Carvalho Chehab <mchehab@s-opensource.com> 2017-11-30 04:19:04 -0500
commitb95b0c98f52883f9b907836f3421341af6f0145f (patch)
tree27e70fcd01749cbccd37dce9ec4cde456a0feb42 /drivers/media/dvb-frontends/zl10036.h
parentmedia: drivers: remove "/**" from non-kernel-doc comments (diff)
downloadlinux-b95b0c98f52883f9b907836f3421341af6f0145f.tar.gz
linux-b95b0c98f52883f9b907836f3421341af6f0145f.tar.bz2
linux-b95b0c98f52883f9b907836f3421341af6f0145f.zip
media: dvb_frontends: fix kernel-doc macros
Now, the Kernel checks for kernel_doc format issues. Weird enough, it didn't get any of those troubles. Shssst! Well, let's fix it, as a preventive way to avoid having hundreds of new warnings on some next Linux version. Tested by adding all files under dvb-frontends that have "/**" on them. Signed-off-by: Mauro Carvalho Chehab <mchehab@s-opensource.com>
Diffstat (limited to 'drivers/media/dvb-frontends/zl10036.h')
-rw-r--r--drivers/media/dvb-frontends/zl10036.h16
1 files changed, 8 insertions, 8 deletions
diff --git a/drivers/media/dvb-frontends/zl10036.h b/drivers/media/dvb-frontends/zl10036.h
index 88751adfecf7..ec90ca927739 100644
--- a/drivers/media/dvb-frontends/zl10036.h
+++ b/drivers/media/dvb-frontends/zl10036.h
@@ -20,20 +20,20 @@
#include <linux/i2c.h>
#include "dvb_frontend.h"
-/**
- * Attach a zl10036 tuner to the supplied frontend structure.
- *
- * @param fe Frontend to attach to.
- * @param config zl10036_config structure
- * @return FE pointer on success, NULL on failure.
- */
-
struct zl10036_config {
u8 tuner_address;
int rf_loop_enable;
};
#if IS_REACHABLE(CONFIG_DVB_ZL10036)
+/**
+ * Attach a zl10036 tuner to the supplied frontend structure.
+ *
+ * @fe: Frontend to attach to.
+ * @config: zl10036_config structure.
+ * @i2c: pointer to struct i2c_adapter.
+ * return: FE pointer on success, NULL on failure.
+ */
extern struct dvb_frontend *zl10036_attach(struct dvb_frontend *fe,
const struct zl10036_config *config, struct i2c_adapter *i2c);
#else