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
3ff3774f
Commit
3ff3774f
authored
Dec 26, 2002
by
Greg Kroah-Hartman
Committed by
Vojtech Pavlik
Dec 26, 2002
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
USB: fix compiler warnings in the isdn usb drivers.
parent
9e314023
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
3 additions
and
3 deletions
+3
-3
drivers/isdn/hisax/st5481_b.c
drivers/isdn/hisax/st5481_b.c
+1
-1
drivers/isdn/hisax/st5481_d.c
drivers/isdn/hisax/st5481_d.c
+1
-1
drivers/isdn/hisax/st5481_usb.c
drivers/isdn/hisax/st5481_usb.c
+1
-1
No files found.
drivers/isdn/hisax/st5481_b.c
View file @
3ff3774f
...
...
@@ -152,7 +152,7 @@ static void led_blink(struct st5481_adapter *adapter)
st5481_usb_device_ctrl_msg
(
adapter
,
GPIO_OUT
,
leds
,
NULL
,
NULL
);
}
static
void
usb_b_out_complete
(
struct
urb
*
urb
)
static
void
usb_b_out_complete
(
struct
urb
*
urb
,
struct
pt_regs
*
regs
)
{
struct
st5481_bcs
*
bcs
=
urb
->
context
;
struct
st5481_b_out
*
b_out
=
&
bcs
->
b_out
;
...
...
drivers/isdn/hisax/st5481_d.c
View file @
3ff3774f
...
...
@@ -370,7 +370,7 @@ static void fifo_reseted(void *context)
FsmEvent
(
&
adapter
->
d_out
.
fsm
,
EV_DOUT_RESETED
,
NULL
);
}
static
void
usb_d_out_complete
(
struct
urb
*
urb
)
static
void
usb_d_out_complete
(
struct
urb
*
urb
,
struct
pt_regs
*
regs
)
{
struct
st5481_adapter
*
adapter
=
urb
->
context
;
struct
st5481_d_out
*
d_out
=
&
adapter
->
d_out
;
...
...
drivers/isdn/hisax/st5481_usb.c
View file @
3ff3774f
...
...
@@ -474,7 +474,7 @@ void st5481_release_isocpipes(struct urb* urb[2])
* called 50 times per second with 20 ISOC descriptors.
* Called at interrupt.
*/
static
void
usb_in_complete
(
struct
urb
*
urb
)
static
void
usb_in_complete
(
struct
urb
*
urb
,
struct
pt_regs
*
regs
)
{
struct
st5481_in
*
in
=
urb
->
context
;
unsigned
char
*
ptr
;
...
...
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