diff options
author | Hans Verkuil <hverkuil@xs4all.nl> | 2008-09-02 22:00:21 (GMT) |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@redhat.com> | 2008-10-12 11:37:14 (GMT) |
commit | da703d6262b5d168a4ceb427255cfcf3771b8f96 (patch) | |
tree | 0306b98bec677e82b322cea1c5944b7556f57796 /drivers/media | |
parent | 028165a336ab7d097d23e2af936dea373e3d3afc (diff) | |
download | linux-da703d6262b5d168a4ceb427255cfcf3771b8f96.tar.xz |
V4L/DVB (8904): cx88: add missing unlock_kernel
sparse found an unbalanced BKL usage.
Signed-off-by: Hans Verkuil <hverkuil@xs4all.nl>
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
Diffstat (limited to 'drivers/media')
-rw-r--r-- | drivers/media/video/cx88/cx88-blackbird.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/media/video/cx88/cx88-blackbird.c b/drivers/media/video/cx88/cx88-blackbird.c index 1b7e2e4..e713697 100644 --- a/drivers/media/video/cx88/cx88-blackbird.c +++ b/drivers/media/video/cx88/cx88-blackbird.c @@ -1073,6 +1073,7 @@ static int mpeg_open(struct inode *inode, struct file *file) err = drv->request_acquire(drv); if(err != 0) { dprintk(1,"%s: Unable to acquire hardware, %d\n", __func__, err); + unlock_kernel(); return err; } } |