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
Kirill Smelkov
linux
Commits
938c1f79
Commit
938c1f79
authored
Oct 04, 2003
by
Stephen Hemminger
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[IRDA]: litelink dongle module conversion.
parent
4ffa2465
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
10 deletions
+6
-10
drivers/net/irda/litelink.c
drivers/net/irda/litelink.c
+6
-10
No files found.
drivers/net/irda/litelink.c
View file @
938c1f79
...
...
@@ -48,12 +48,12 @@ static int litelink_reset(struct irda_task *task);
static
__u32
baud_rates
[]
=
{
115200
,
57600
,
38400
,
19200
,
9600
};
static
struct
dongle_reg
dongle
=
{
Q_NULL
,
IRDA_LITELINK_DONGLE
,
litelink_open
,
litelink_close
,
litelink_reset
,
litelink_change_speed
,
.
type
=
IRDA_LITELINK_DONGLE
,
.
open
=
litelink_open
,
.
close
=
litelink_close
,
.
reset
=
litelink_reset
,
.
change_speed
=
litelink_change_speed
,
.
owner
=
THIS_MODULE
,
};
int
__init
litelink_init
(
void
)
...
...
@@ -70,16 +70,12 @@ static void litelink_open(dongle_t *self, struct qos_info *qos)
{
qos
->
baud_rate
.
bits
&=
IR_9600
|
IR_19200
|
IR_38400
|
IR_57600
|
IR_115200
;
qos
->
min_turn_time
.
bits
=
0x7f
;
/* Needs 0.01 ms */
MOD_INC_USE_COUNT
;
}
static
void
litelink_close
(
dongle_t
*
self
)
{
/* Power off dongle */
self
->
set_dtr_rts
(
self
->
dev
,
FALSE
,
FALSE
);
MOD_DEC_USE_COUNT
;
}
/*
...
...
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