diff options
author | Nikolas Nyby | 2019-07-23 15:42:57 +0200 |
---|---|---|
committer | Dmitry Torokhov | 2019-07-23 15:48:59 +0200 |
commit | b1cbb2f09d7b3f1726215987d5b28f5aea9548da (patch) | |
tree | 31b1490198748bb9f028bce059f40b7f5df49278 | |
parent | Input: applespi - select CRC16 module (diff) | |
download | kernel-qcow2-linux-b1cbb2f09d7b3f1726215987d5b28f5aea9548da.tar.gz kernel-qcow2-linux-b1cbb2f09d7b3f1726215987d5b28f5aea9548da.tar.xz kernel-qcow2-linux-b1cbb2f09d7b3f1726215987d5b28f5aea9548da.zip |
Input: applespi - fix trivial typo in struct description
This fixes a typo in the keyboard_protocol description.
coodinate -> coordinate.
Signed-off-by: Nikolas Nyby <nikolas@gnu.org>
Signed-off-by: Dmitry Torokhov <dmitry.torokhov@gmail.com>
-rw-r--r-- | drivers/input/keyboard/applespi.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/drivers/input/keyboard/applespi.c b/drivers/input/keyboard/applespi.c index 52d394f473a2..acf34a5ff571 100644 --- a/drivers/input/keyboard/applespi.c +++ b/drivers/input/keyboard/applespi.c @@ -134,10 +134,10 @@ struct keyboard_protocol { * struct tp_finger - single trackpad finger structure, le16-aligned * * @origin: zero when switching track finger - * @abs_x: absolute x coodinate - * @abs_y: absolute y coodinate - * @rel_x: relative x coodinate - * @rel_y: relative y coodinate + * @abs_x: absolute x coordinate + * @abs_y: absolute y coordinate + * @rel_x: relative x coordinate + * @rel_y: relative y coordinate * @tool_major: tool area, major axis * @tool_minor: tool area, minor axis * @orientation: 16384 when point, else 15 bit angle |