diff options
author | Andy Walls <awalls@radix.net> | 2009-02-01 21:44:00 -0500 |
---|---|---|
committer | Andy Walls <awalls@radix.net> | 2009-02-01 21:44:00 -0500 |
commit | 527d5f186187cc1a8c128b0aca06d047e7f753a4 (patch) | |
tree | 60965a508cebfa0a82899ceda5e001cf7fe8d889 /linux/drivers/media/video/cx18 | |
parent | d7d02b86ebba841e90992de5bddb169575e682f5 (diff) | |
download | mediapointer-dvb-s2-527d5f186187cc1a8c128b0aca06d047e7f753a4.tar.gz mediapointer-dvb-s2-527d5f186187cc1a8c128b0aca06d047e7f753a4.tar.bz2 |
cx18: Remove an unused spinlock
From: Andy Walls <awalls@radix.net>
Priority: normal
Signed-off-by: Andy Walls <awalls@radix.net>
Diffstat (limited to 'linux/drivers/media/video/cx18')
-rw-r--r-- | linux/drivers/media/video/cx18/cx18-driver.c | 2 | ||||
-rw-r--r-- | linux/drivers/media/video/cx18/cx18-driver.h | 1 |
2 files changed, 0 insertions, 3 deletions
diff --git a/linux/drivers/media/video/cx18/cx18-driver.c b/linux/drivers/media/video/cx18/cx18-driver.c index f48d18f69..4699cecbe 100644 --- a/linux/drivers/media/video/cx18/cx18-driver.c +++ b/linux/drivers/media/video/cx18/cx18-driver.c @@ -563,8 +563,6 @@ static int __devinit cx18_init_struct1(struct cx18 *cx) mutex_init(&cx->epu2apu_mb_lock); mutex_init(&cx->epu2cpu_mb_lock); - spin_lock_init(&cx->lock); - cx->work_queue = create_singlethread_workqueue(cx->name); if (cx->work_queue == NULL) { CX18_ERR("Unable to create work hander thread\n"); diff --git a/linux/drivers/media/video/cx18/cx18-driver.h b/linux/drivers/media/video/cx18/cx18-driver.h index 3a21013cd..d95c6ace2 100644 --- a/linux/drivers/media/video/cx18/cx18-driver.h +++ b/linux/drivers/media/video/cx18/cx18-driver.h @@ -429,7 +429,6 @@ struct cx18 { unsigned long i_flags; /* global cx18 flags */ atomic_t ana_capturing; /* count number of active analog capture streams */ atomic_t tot_capturing; /* total count number of active capture streams */ - spinlock_t lock; /* lock access to this struct */ int search_pack_header; int open_id; /* incremented each time an open occurs, used as |