summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeff Johnson <quic_jjohnson@quicinc.com>2024-06-12 22:47:29 +0300
committerHans Verkuil <hverkuil-cisco@xs4all.nl>2024-06-15 11:49:20 +0300
commitd41b69a00c1b52dcab479e5acce84443758fcca6 (patch)
tree69c72a0c5fdbce33877fd1d731b5caf56063e565
parent92b8d9bfc338150f3061cd6fca92716d3817e9a8 (diff)
downloadlinux-d41b69a00c1b52dcab479e5acce84443758fcca6.tar.xz
media: tda9887: add missing MODULE_DESCRIPTION() macro
With ARCH=x86, make allmodconfig && make W=1 C=1 reports: WARNING: modpost: missing MODULE_DESCRIPTION() in drivers/media/tuners/tda9887.o Add the missing invocation of the MODULE_DESCRIPTION() macro. Signed-off-by: Jeff Johnson <quic_jjohnson@quicinc.com> Signed-off-by: Hans Verkuil <hverkuil-cisco@xs4all.nl>
-rw-r--r--drivers/media/tuners/tda9887.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/media/tuners/tda9887.c b/drivers/media/tuners/tda9887.c
index dca2fc776e44..b2f7054c1832 100644
--- a/drivers/media/tuners/tda9887.c
+++ b/drivers/media/tuners/tda9887.c
@@ -707,4 +707,5 @@ struct dvb_frontend *tda9887_attach(struct dvb_frontend *fe,
}
EXPORT_SYMBOL_GPL(tda9887_attach);
+MODULE_DESCRIPTION("NXP TDA9885/6/7 analog IF demodulator driver");
MODULE_LICENSE("GPL");