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
c11ea16f
Commit
c11ea16f
authored
Oct 28, 2003
by
Andrew Morton
Committed by
Linus Torvalds
Oct 28, 2003
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[PATCH] digi_accelport warning fix
Use the correct type for the workqueue callback.
parent
8c7981bc
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
drivers/usb/serial/digi_acceleport.c
drivers/usb/serial/digi_acceleport.c
+3
-3
No files found.
drivers/usb/serial/digi_acceleport.c
View file @
c11ea16f
...
...
@@ -444,7 +444,7 @@ struct digi_port {
/* Local Function Declarations */
static
void
digi_wakeup_write
(
struct
usb_serial_port
*
port
);
static
void
digi_wakeup_write_lock
(
struct
usb_serial_port
*
port
);
static
void
digi_wakeup_write_lock
(
void
*
);
static
int
digi_write_oob_command
(
struct
usb_serial_port
*
port
,
unsigned
char
*
buf
,
int
count
,
int
interruptible
);
static
int
digi_write_inb_command
(
struct
usb_serial_port
*
port
,
...
...
@@ -608,9 +608,9 @@ static inline long cond_wait_interruptible_timeout_irqrestore(
* on writes.
*/
static
void
digi_wakeup_write_lock
(
struct
usb_serial_port
*
port
)
static
void
digi_wakeup_write_lock
(
void
*
arg
)
{
struct
usb_serial_port
*
port
=
arg
;
unsigned
long
flags
;
struct
digi_port
*
priv
=
usb_get_serial_port_data
(
port
);
...
...
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