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
3e5db7aa
Commit
3e5db7aa
authored
Dec 11, 2002
by
Greg Kroah-Hartman
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[PATCH] usbaudio.c: fix for urb callback function change
parent
0bf9a040
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
sound/usb/usbaudio.c
sound/usb/usbaudio.c
+2
-2
No files found.
sound/usb/usbaudio.c
View file @
3e5db7aa
...
@@ -526,7 +526,7 @@ static struct snd_urb_ops audio_urb_ops[2] = {
...
@@ -526,7 +526,7 @@ static struct snd_urb_ops audio_urb_ops[2] = {
/*
/*
* complete callback from data urb
* complete callback from data urb
*/
*/
static
void
snd_complete_urb
(
struct
urb
*
urb
)
static
void
snd_complete_urb
(
struct
urb
*
urb
,
struct
pt_regs
*
regs
)
{
{
snd_urb_ctx_t
*
ctx
=
(
snd_urb_ctx_t
*
)
urb
->
context
;
snd_urb_ctx_t
*
ctx
=
(
snd_urb_ctx_t
*
)
urb
->
context
;
snd_usb_substream_t
*
subs
=
ctx
->
subs
;
snd_usb_substream_t
*
subs
=
ctx
->
subs
;
...
@@ -551,7 +551,7 @@ static void snd_complete_urb(struct urb *urb)
...
@@ -551,7 +551,7 @@ static void snd_complete_urb(struct urb *urb)
/*
/*
* complete callback from sync urb
* complete callback from sync urb
*/
*/
static
void
snd_complete_sync_urb
(
struct
urb
*
urb
)
static
void
snd_complete_sync_urb
(
struct
urb
*
urb
,
struct
pt_regs
*
regs
)
{
{
snd_urb_ctx_t
*
ctx
=
(
snd_urb_ctx_t
*
)
urb
->
context
;
snd_urb_ctx_t
*
ctx
=
(
snd_urb_ctx_t
*
)
urb
->
context
;
snd_usb_substream_t
*
subs
=
ctx
->
subs
;
snd_usb_substream_t
*
subs
=
ctx
->
subs
;
...
...
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