Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
L
linux-davinci-2.6.23
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
linux
linux-davinci-2.6.23
Commits
2f3ed053
Commit
2f3ed053
authored
Jun 25, 2007
by
Mauro Carvalho Chehab
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
V4L/DVB (5790): Fix error handling for stv680
Signed-off-by:
Mauro Carvalho Chehab
<
mchehab@infradead.org
>
parent
2d9078f7
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
2 deletions
+5
-2
drivers/media/video/stv680.c
drivers/media/video/stv680.c
+5
-2
No files found.
drivers/media/video/stv680.c
View file @
2f3ed053
...
...
@@ -715,8 +715,11 @@ static int stv680_start_stream (struct usb_stv *stv680)
stv680_video_irq
,
stv680
);
stv680
->
urb
[
i
]
=
urb
;
err
=
usb_submit_urb
(
stv680
->
urb
[
i
],
GFP_KERNEL
);
if
(
err
)
PDEBUG
(
0
,
"STV(e): urb burned down in start stream"
);
if
(
err
)
{
PDEBUG
(
0
,
"STV(e): urb burned down with err "
"%d in start stream %d"
,
err
,
i
);
goto
nomem_err
;
}
}
/* i STV680_NUMSBUF */
stv680
->
framecount
=
0
;
...
...
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