Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
L
linux
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
linux
Commits
5e733a37
Commit
5e733a37
authored
Oct 21, 2004
by
Dmitry Torokhov
Committed by
Vojtech Pavlik
Oct 21, 2004
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Input: couple of whitespace fixes.
Signed-off-by:
Dmitry Torokhov
<
dtor@mail.ru
>
parent
c5c36ac1
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
13 additions
and
13 deletions
+13
-13
drivers/input/mouse/sermouse.c
drivers/input/mouse/sermouse.c
+12
-12
drivers/input/mouse/vsxxxaa.c
drivers/input/mouse/vsxxxaa.c
+1
-1
No files found.
drivers/input/mouse/sermouse.c
View file @
5e733a37
...
...
@@ -11,18 +11,18 @@
/*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*
*
* Should you need to contact me, the author, you can do so either by
* e-mail - mail your message to <vojtech@ucw.cz>, or by paper mail:
* Vojtech Pavlik, Simunkova 1594, Prague 8, 182 00 Czech Republic
...
...
@@ -73,19 +73,19 @@ static void sermouse_process_msc(struct sermouse *sermouse, signed char data, st
case
0
:
if
((
data
&
0xf8
)
!=
0x80
)
return
;
input_report_key
(
dev
,
BTN_LEFT
,
!
(
data
&
4
));
input_report_key
(
dev
,
BTN_LEFT
,
!
(
data
&
4
));
input_report_key
(
dev
,
BTN_RIGHT
,
!
(
data
&
1
));
input_report_key
(
dev
,
BTN_MIDDLE
,
!
(
data
&
2
));
break
;
case
1
:
case
3
:
case
1
:
case
3
:
input_report_rel
(
dev
,
REL_X
,
data
/
2
);
input_report_rel
(
dev
,
REL_Y
,
-
buf
[
1
]);
buf
[
0
]
=
data
-
data
/
2
;
break
;
case
2
:
case
2
:
case
4
:
input_report_rel
(
dev
,
REL_X
,
buf
[
0
]);
input_report_rel
(
dev
,
REL_Y
,
buf
[
1
]
-
data
);
...
...
@@ -145,7 +145,7 @@ static void sermouse_process_ms(struct sermouse *sermouse, signed char data, str
case
3
:
switch
(
sermouse
->
type
)
{
case
SERIO_MS
:
sermouse
->
type
=
SERIO_MP
;
...
...
@@ -164,7 +164,7 @@ static void sermouse_process_ms(struct sermouse *sermouse, signed char data, str
input_report_rel
(
dev
,
REL_WHEEL
,
(
data
&
8
)
-
(
data
&
7
));
break
;
}
break
;
case
4
:
...
...
@@ -243,7 +243,7 @@ static void sermouse_connect(struct serio *serio, struct serio_driver *drv)
{
struct
sermouse
*
sermouse
;
unsigned
char
c
;
if
((
serio
->
type
&
SERIO_TYPE
)
!=
SERIO_RS232
)
return
;
...
...
@@ -287,7 +287,7 @@ static void sermouse_connect(struct serio *serio, struct serio_driver *drv)
}
input_register_device
(
&
sermouse
->
dev
);
printk
(
KERN_INFO
"input: %s on %s
\n
"
,
sermouse_protocols
[
sermouse
->
type
],
serio
->
phys
);
}
...
...
drivers/input/mouse/vsxxxaa.c
View file @
5e733a37
...
...
@@ -45,7 +45,7 @@
* | 4 --- 3 |
* \ 2 1 /
* -------
*
*
* DEC socket DE9 DB25 Note
* 1 (GND) 5 7 -
* 2 (RxD) 2 3 -
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment