diff options
author | Patrick Boettcher <pb@linuxtv.org> | 2009-02-28 08:30:20 -0500 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@redhat.com> | 2009-03-30 11:43:47 -0400 |
commit | 7def728f558c99489cc89f4c5d62dd64dc0289b4 (patch) | |
tree | 582a422ebb7468d74d7613991e74dfbe96cd689b /drivers/media/dvb/b2c2/flexcop.c | |
parent | 1662070a593b5a862b5bf8c843ebfab0deb058a6 (diff) |
V4L/DVB (11285): Remove unecessary udelay
When resetting the PID-filter block a safety msleep(1) was injected. Now that the function is called from interrupt context, it was replaced with a udelay. It seems that this delay is not necessary at all, let's remove it for now and test a while.
Signed-off-by: Patrick Boettcher <pb@linuxtv.org>
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
Diffstat (limited to 'drivers/media/dvb/b2c2/flexcop.c')
-rw-r--r-- | drivers/media/dvb/b2c2/flexcop.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/drivers/media/dvb/b2c2/flexcop.c b/drivers/media/dvb/b2c2/flexcop.c index 91068952b50..e836caecebb 100644 --- a/drivers/media/dvb/b2c2/flexcop.c +++ b/drivers/media/dvb/b2c2/flexcop.c | |||
@@ -212,7 +212,6 @@ void flexcop_reset_block_300(struct flexcop_device *fc) | |||
212 | v210.sw_reset_210.Block_reset_enable = 0xb2; | 212 | v210.sw_reset_210.Block_reset_enable = 0xb2; |
213 | 213 | ||
214 | fc->write_ibi_reg(fc,sw_reset_210,v210); | 214 | fc->write_ibi_reg(fc,sw_reset_210,v210); |
215 | udelay(1000); | ||
216 | fc->write_ibi_reg(fc,ctrl_208,v208_save); | 215 | fc->write_ibi_reg(fc,ctrl_208,v208_save); |
217 | } | 216 | } |
218 | 217 | ||