Commit e0d80b64 authored by Lee Jones's avatar Lee Jones Committed by Dmitry Torokhov

Input: cros_ec_keyb - struct headers should start with 'struct <name>'

Fixes the following W=1 kernel build warning(s):

 drivers/input/keyboard/cros_ec_keyb.c:72: warning: cannot understand function prototype: 'struct cros_ec_bs_map '
Signed-off-by: default avatarLee Jones <lee.jones@linaro.org>
Reviewed-by: default avatarBenson Leung <bleung@chromium.org>
Link: https://lore.kernel.org/r/20201104162427.2984742-8-lee.jones@linaro.org
[dtor: fixed up docbook comments for cros_ec_keyb structure as well]
Signed-off-by: default avatarDmitry Torokhov <dmitry.torokhov@gmail.com>
parent 2216c0e4
...@@ -27,7 +27,9 @@ ...@@ -27,7 +27,9 @@
#include <asm/unaligned.h> #include <asm/unaligned.h>
/* /**
* struct cros_ec_keyb - Structure representing EC keyboard device
*
* @rows: Number of rows in the keypad * @rows: Number of rows in the keypad
* @cols: Number of columns in the keypad * @cols: Number of columns in the keypad
* @row_shift: log2 or number of rows, rounded up * @row_shift: log2 or number of rows, rounded up
...@@ -58,10 +60,9 @@ struct cros_ec_keyb { ...@@ -58,10 +60,9 @@ struct cros_ec_keyb {
struct notifier_block notifier; struct notifier_block notifier;
}; };
/** /**
* cros_ec_bs_map - Struct mapping Linux keycodes to EC button/switch bitmap * struct cros_ec_bs_map - Mapping between Linux keycodes and EC button/switch
* #defines * bitmap #defines
* *
* @ev_type: The type of the input event to generate (e.g., EV_KEY). * @ev_type: The type of the input event to generate (e.g., EV_KEY).
* @code: A linux keycode * @code: A linux keycode
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment