Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
L
linux-davinci
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
linux
linux-davinci
Commits
d083e906
Commit
d083e906
authored
May 29, 2005
by
Dmitry Torokhov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Input: whitespace fixes in drivers/input/keyboard
Signed-off-by:
Dmitry Torokhov
<
dtor@mail.ru
>
parent
968ac842
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
22 additions
and
22 deletions
+22
-22
drivers/input/keyboard/atkbd.c
drivers/input/keyboard/atkbd.c
+3
-3
drivers/input/keyboard/lkkbd.c
drivers/input/keyboard/lkkbd.c
+4
-4
drivers/input/keyboard/locomokbd.c
drivers/input/keyboard/locomokbd.c
+14
-14
drivers/input/keyboard/maple_keyb.c
drivers/input/keyboard/maple_keyb.c
+1
-1
No files found.
drivers/input/keyboard/atkbd.c
View file @
d083e906
...
...
@@ -227,7 +227,7 @@ static ssize_t atkbd_do_set_##_name(struct device *d, const char *b, size_t s) \
{ \
return atkbd_attr_set_helper(d, b, s, atkbd_set_##_name); \
} \
static struct device_attribute atkbd_attr_##_name =
\
static struct device_attribute atkbd_attr_##_name = \
__ATTR(_name, S_IWUSR | S_IRUGO, atkbd_do_show_##_name, atkbd_do_set_##_name);
ATKBD_DEFINE_ATTR
(
extra
);
...
...
@@ -388,7 +388,7 @@ static irqreturn_t atkbd_interrupt(struct serio *serio, unsigned char data,
value
=
atkbd
->
release
?
0
:
(
1
+
(
!
atkbd
->
softrepeat
&&
test_bit
(
atkbd
->
keycode
[
code
],
atkbd
->
dev
.
key
)));
switch
(
value
)
{
/* Workaround Toshiba laptop multiple keypress */
switch
(
value
)
{
/* Workaround Toshiba laptop multiple keypress */
case
0
:
atkbd
->
last
=
0
;
break
;
...
...
@@ -894,7 +894,7 @@ static int atkbd_reconnect(struct serio *serio)
if
(
atkbd
->
write
)
{
param
[
0
]
=
(
test_bit
(
LED_SCROLLL
,
atkbd
->
dev
.
led
)
?
1
:
0
)
|
(
test_bit
(
LED_NUML
,
atkbd
->
dev
.
led
)
?
2
:
0
)
|
(
test_bit
(
LED_CAPSL
,
atkbd
->
dev
.
led
)
?
4
:
0
);
|
(
test_bit
(
LED_CAPSL
,
atkbd
->
dev
.
led
)
?
4
:
0
);
if
(
atkbd_probe
(
atkbd
))
return
-
1
;
...
...
drivers/input/keyboard/lkkbd.c
View file @
d083e906
...
...
@@ -15,10 +15,10 @@
* information given below, I will _not_ be liable!
*
* RJ10 pinout: To DE9: Or DB25:
*
1 - RxD <----> Pin 3 (TxD) <-> Pin 2 (TxD)
*
2 - GND <----> Pin 5 (GND) <-> Pin 7 (GND)
*
4 - TxD <----> Pin 2 (RxD) <-> Pin 3 (RxD)
*
3 - +12V (from HDD drive connector), DON'T connect to DE9 or DB25!!!
* 1 - RxD <----> Pin 3 (TxD) <-> Pin 2 (TxD)
* 2 - GND <----> Pin 5 (GND) <-> Pin 7 (GND)
* 4 - TxD <----> Pin 2 (RxD) <-> Pin 3 (RxD)
* 3 - +12V (from HDD drive connector), DON'T connect to DE9 or DB25!!!
*
* Pin numbers for DE9 and DB25 are noted on the plug (quite small:). For
* RJ10, it's like this:
...
...
drivers/input/keyboard/locomokbd.c
View file @
d083e906
...
...
@@ -42,7 +42,7 @@ MODULE_AUTHOR("John Lenz <lenz@cs.wisc.edu>");
MODULE_DESCRIPTION
(
"LoCoMo keyboard driver"
);
MODULE_LICENSE
(
"GPL"
);
#define LOCOMOKBD_NUMKEYS
128
#define LOCOMOKBD_NUMKEYS 128
#define KEY_ACTIVITY KEY_F16
#define KEY_CONTACT KEY_F18
...
...
@@ -61,7 +61,7 @@ static unsigned char locomokbd_keycode[LOCOMOKBD_NUMKEYS] = {
KEY_G
,
KEY_F
,
KEY_X
,
KEY_S
,
0
,
0
,
0
,
0
,
0
,
0
,
/* 90 - 99 */
0
,
0
,
KEY_DOT
,
0
,
KEY_COMMA
,
KEY_N
,
KEY_B
,
KEY_C
,
KEY_Z
,
KEY_A
,
/* 100 - 109 */
KEY_LEFTSHIFT
,
KEY_TAB
,
KEY_LEFTCTRL
,
0
,
0
,
0
,
0
,
0
,
0
,
0
,
/* 110 - 119 */
KEY_M
,
KEY_SPACE
,
KEY_V
,
KEY_APOSTROPHE
,
KEY_SLASH
,
0
,
0
,
0
/* 120 - 128 */
KEY_M
,
KEY_SPACE
,
KEY_V
,
KEY_APOSTROPHE
,
KEY_SLASH
,
0
,
0
,
0
/* 120 - 128 */
};
#define KB_ROWS 16
...
...
@@ -82,7 +82,7 @@ struct locomokbd {
struct
locomo_dev
*
ldev
;
unsigned
long
base
;
spinlock_t
lock
;
struct
timer_list
timer
;
};
...
...
@@ -95,7 +95,7 @@ static inline void locomokbd_charge_all(unsigned long membase)
static
inline
void
locomokbd_activate_all
(
unsigned
long
membase
)
{
unsigned
long
r
;
locomo_writel
(
0
,
membase
+
LOCOMO_KSC
);
r
=
locomo_readl
(
membase
+
LOCOMO_KIC
);
r
&=
0xFEFF
;
...
...
@@ -127,7 +127,7 @@ static inline void locomokbd_reset_col(unsigned long membase, int col)
*/
/* Scan the hardware keyboard and push any changes up through the input layer */
static
void
locomokbd_scankeyboard
(
struct
locomokbd
*
locomokbd
,
struct
pt_regs
*
regs
)
static
void
locomokbd_scankeyboard
(
struct
locomokbd
*
locomokbd
,
struct
pt_regs
*
regs
)
{
unsigned
int
row
,
col
,
rowd
,
scancode
;
unsigned
long
flags
;
...
...
@@ -138,7 +138,7 @@ static void locomokbd_scankeyboard(struct locomokbd *locomokbd, struct pt_regs *
if
(
regs
)
input_regs
(
&
locomokbd
->
input
,
regs
);
locomokbd_charge_all
(
membase
);
num_pressed
=
0
;
...
...
@@ -146,9 +146,9 @@ static void locomokbd_scankeyboard(struct locomokbd *locomokbd, struct pt_regs *
locomokbd_activate_col
(
membase
,
col
);
udelay
(
KB_DELAY
);
rowd
=
~
locomo_readl
(
membase
+
LOCOMO_KIB
);
for
(
row
=
0
;
row
<
KB_ROWS
;
row
++
)
{
for
(
row
=
0
;
row
<
KB_ROWS
;
row
++
)
{
scancode
=
SCANCODE
(
col
,
row
);
if
(
rowd
&
KB_ROWMASK
(
row
))
{
num_pressed
+=
1
;
...
...
@@ -170,7 +170,7 @@ static void locomokbd_scankeyboard(struct locomokbd *locomokbd, struct pt_regs *
spin_unlock_irqrestore
(
&
locomokbd
->
lock
,
flags
);
}
/*
/*
* LoCoMo keyboard interrupt handler.
*/
static
irqreturn_t
locomokbd_interrupt
(
int
irq
,
void
*
dev_id
,
struct
pt_regs
*
regs
)
...
...
@@ -205,8 +205,8 @@ static int locomokbd_probe(struct locomo_dev *dev)
memset
(
locomokbd
,
0
,
sizeof
(
struct
locomokbd
));
/* try and claim memory region */
if
(
!
request_mem_region
((
unsigned
long
)
dev
->
mapbase
,
dev
->
length
,
if
(
!
request_mem_region
((
unsigned
long
)
dev
->
mapbase
,
dev
->
length
,
LOCOMO_DRIVER_NAME
(
dev
)))
{
ret
=
-
EBUSY
;
printk
(
KERN_ERR
"locomokbd: Can't acquire access to io memory for keyboard
\n
"
);
...
...
@@ -225,7 +225,7 @@ static int locomokbd_probe(struct locomo_dev *dev)
locomokbd
->
timer
.
data
=
(
unsigned
long
)
locomokbd
;
locomokbd
->
input
.
evbit
[
0
]
=
BIT
(
EV_KEY
)
|
BIT
(
EV_REP
);
init_input_dev
(
&
locomokbd
->
input
);
locomokbd
->
input
.
keycode
=
locomokbd
->
keycode
;
locomokbd
->
input
.
keycodesize
=
sizeof
(
unsigned
char
);
...
...
@@ -271,11 +271,11 @@ free:
static
int
locomokbd_remove
(
struct
locomo_dev
*
dev
)
{
struct
locomokbd
*
locomokbd
=
locomo_get_drvdata
(
dev
);
free_irq
(
dev
->
irq
[
0
],
locomokbd
);
del_timer_sync
(
&
locomokbd
->
timer
);
input_unregister_device
(
&
locomokbd
->
input
);
locomo_set_drvdata
(
dev
,
NULL
);
...
...
drivers/input/keyboard/maple_keyb.c
View file @
d083e906
/*
* $Id: maple_keyb.c,v 1.4 2004/03/22 01:18:15 lethal Exp $
*
SEGA Dreamcast keyboard driver
* SEGA Dreamcast keyboard driver
* Based on drivers/usb/usbkbd.c
*/
...
...
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