Commit 462e108b authored by Hans Verkuil's avatar Hans Verkuil
Browse files

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: default avatarHans Verkuil <hverkuil-cisco@xs4all.nl>
Signed-off-by: default avatarSean Young <sean@mess.org>
parent dc887661
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -83,3 +83,4 @@ module_exit(exit_rc_map_adstech_dvb_t_pci)

MODULE_LICENSE("GPL");
MODULE_AUTHOR("Mauro Carvalho Chehab");
MODULE_DESCRIPTION("ADS Tech Instant TV DVB-T PCI Remote");
+1 −0
Original line number Diff line number Diff line
@@ -54,3 +54,4 @@ module_exit(exit_rc_map_alink_dtu_m)

MODULE_LICENSE("GPL");
MODULE_AUTHOR("Antti Palosaari <crope@iki.fi>");
MODULE_DESCRIPTION("A-Link DTU(m) slim remote, 6 rows, 3 columns.");
+1 −0
Original line number Diff line number Diff line
@@ -79,3 +79,4 @@ module_exit(exit_rc_map_anysee)

MODULE_LICENSE("GPL");
MODULE_AUTHOR("Antti Palosaari <crope@iki.fi>");
MODULE_DESCRIPTION("Anysee remote keytable");
+1 −0
Original line number Diff line number Diff line
@@ -74,3 +74,4 @@ module_exit(exit_rc_map_apac_viewcomp)

MODULE_LICENSE("GPL");
MODULE_AUTHOR("Mauro Carvalho Chehab");
MODULE_DESCRIPTION("apac-viewcomp remote controller keytable");
+1 −0
Original line number Diff line number Diff line
@@ -62,3 +62,4 @@ module_exit(exit_rc_map_t2hybrid)

MODULE_LICENSE("GPL");
MODULE_AUTHOR("Oleh Kravchenko <oleg@kaa.org.ua>");
MODULE_DESCRIPTION("Astrometa T2hybrid remote controller keytable");
Loading