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
1bed90b3
Commit
1bed90b3
authored
Mar 13, 2003
by
Greg Kroah-Hartman
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[PATCH] USB: fixup from previous io_ti.c patch
parent
169b4d42
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
drivers/usb/serial/io_ti.c
drivers/usb/serial/io_ti.c
+2
-2
No files found.
drivers/usb/serial/io_ti.c
View file @
1bed90b3
...
@@ -503,13 +503,13 @@ static int TIIsTxActive (struct edgeport_port *port)
...
@@ -503,13 +503,13 @@ static int TIIsTxActive (struct edgeport_port *port)
if
(
status
)
if
(
status
)
goto
exit_is_tx_active
;
goto
exit_is_tx_active
;
dbg
(
"%s - LSR = 0x%X"
,
__FUNCTION__
,
lsr
);
dbg
(
"%s - LSR = 0x%X"
,
__FUNCTION__
,
*
lsr
);
/* If either buffer has data or we are transmitting then return TRUE */
/* If either buffer has data or we are transmitting then return TRUE */
if
((
oedb
->
XByteCount
&
0x80
)
!=
0
)
if
((
oedb
->
XByteCount
&
0x80
)
!=
0
)
bytes_left
+=
64
;
bytes_left
+=
64
;
if
((
lsr
&
UMP_UART_LSR_TX_MASK
)
==
0
)
if
((
*
lsr
&
UMP_UART_LSR_TX_MASK
)
==
0
)
bytes_left
+=
1
;
bytes_left
+=
1
;
/* We return Not Active if we get any kind of error */
/* We return Not Active if we get any kind of error */
...
...
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