From 462e108bac18419f17c6a34eb348b600a614aa4f Mon Sep 17 00:00:00 2001 From: Hans Verkuil Date: Tue, 26 Sep 2023 11:58:42 +0200 Subject: media: rc: keymaps: add missing MODULE_DESCRIPTION to keymaps When building the modules 'modpost' warns about missing MODULE_DESCRIPTION. Since almost none of the rc keymap modules have this, it produces a lot of warnings. As a first step to fixing all media modules, add this line to all keymaps. The description should be a human-readable string describing the remote or the remote controller that the keymap can be used with. Note that keymaps/rc-cec.c is actually compiled into the rc-core, so that is the sole keymap source that didn't need this. Signed-off-by: Hans Verkuil Signed-off-by: Sean Young --- drivers/media/rc/keymaps/rc-digittrade.c | 1 + 1 file changed, 1 insertion(+) (limited to 'drivers/media/rc/keymaps/rc-digittrade.c') diff --git a/drivers/media/rc/keymaps/rc-digittrade.c b/drivers/media/rc/keymaps/rc-digittrade.c index 65bc8ad7e52c..129a81f59b4a 100644 --- a/drivers/media/rc/keymaps/rc-digittrade.c +++ b/drivers/media/rc/keymaps/rc-digittrade.c @@ -68,3 +68,4 @@ module_exit(exit_rc_map_digittrade) MODULE_LICENSE("GPL"); MODULE_AUTHOR("Antti Palosaari "); +MODULE_DESCRIPTION("Digittrade DVB-T USB Stick remote controller keytable"); -- cgit