Message ID | 20190722153023.9912-1-nikolas@gnu.org (mailing list archive) |
---|---|
State | Mainlined |
Commit | b1cbb2f09d7b3f1726215987d5b28f5aea9548da |
Headers | show |
Series | Input: applespi: fix trivial typo in struct description | expand |
On Mon, Jul 22, 2019 at 11:30:23AM -0400, Nikolas Nyby wrote: > This fixes a typo in the keyboard_protocol description. > coodinate -> coordinate. > > Signed-off-by: Nikolas Nyby <nikolas@gnu.org> Applied, thank you. > --- > drivers/input/keyboard/applespi.c | 8 ++++---- > 1 file changed, 4 insertions(+), 4 deletions(-) > > diff --git a/drivers/input/keyboard/applespi.c b/drivers/input/keyboard/applespi.c > index 548737e7aeda..8c7d12c95d2f 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 > -- > 2.22.0 >
diff --git a/drivers/input/keyboard/applespi.c b/drivers/input/keyboard/applespi.c index 548737e7aeda..8c7d12c95d2f 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
This fixes a typo in the keyboard_protocol description. coodinate -> coordinate. Signed-off-by: Nikolas Nyby <nikolas@gnu.org> --- drivers/input/keyboard/applespi.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-)