diff options
author | Hans Verkuil <hverkuil-cisco@xs4all.nl> | 2023-09-26 11:58:42 +0200 |
---|---|---|
committer | Hans Verkuil <hverkuil-cisco@xs4all.nl> | 2023-10-07 10:55:48 +0200 |
commit | 462e108bac18419f17c6a34eb348b600a614aa4f (patch) | |
tree | 63356c8202c63c82d373d85704252ba273a7a41c /drivers/media/rc/keymaps/rc-streamzap.c | |
parent | media: Documentation: Split camera sensor documentation (diff) | |
download | linux-462e108bac18419f17c6a34eb348b600a614aa4f.tar.xz linux-462e108bac18419f17c6a34eb348b600a614aa4f.zip |
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 <hverkuil-cisco@xs4all.nl>
Signed-off-by: Sean Young <sean@mess.org>
Diffstat (limited to 'drivers/media/rc/keymaps/rc-streamzap.c')
-rw-r--r-- | drivers/media/rc/keymaps/rc-streamzap.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/media/rc/keymaps/rc-streamzap.c b/drivers/media/rc/keymaps/rc-streamzap.c index 6684e2e86bc9..b82c3cdfca3b 100644 --- a/drivers/media/rc/keymaps/rc-streamzap.c +++ b/drivers/media/rc/keymaps/rc-streamzap.c @@ -75,3 +75,4 @@ module_exit(exit_rc_map_streamzap) MODULE_LICENSE("GPL"); MODULE_AUTHOR("Jarod Wilson <jarod@redhat.com>"); +MODULE_DESCRIPTION("Streamzap remote controller keytable"); |