diff options
author | Patrick Boettcher <pb@linuxtv.org> | 2009-02-28 14:30:20 +0100 |
---|---|---|
committer | Patrick Boettcher <pb@linuxtv.org> | 2009-02-28 14:30:20 +0100 |
commit | 299a56025d357c1156cbe3b69689f37e5ac19eef (patch) | |
tree | 9b938154dad5f140abdc4772732e050bcd26dd3a /linux | |
parent | 6c7ed65e3ea76c36aec18b3c7d7fc97af216bf05 (diff) | |
download | mediapointer-dvb-s2-299a56025d357c1156cbe3b69689f37e5ac19eef.tar.gz mediapointer-dvb-s2-299a56025d357c1156cbe3b69689f37e5ac19eef.tar.bz2 |
Remove unecessary udelay
From: Patrick Boettcher <pb@linuxtv.org>
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.
Priority: normal
Signed-off-by: Patrick Boettcher <pb@linuxtv.org>
Diffstat (limited to 'linux')
-rw-r--r-- | linux/drivers/media/dvb/b2c2/flexcop.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/linux/drivers/media/dvb/b2c2/flexcop.c b/linux/drivers/media/dvb/b2c2/flexcop.c index 91068952b..e836caece 100644 --- a/linux/drivers/media/dvb/b2c2/flexcop.c +++ b/linux/drivers/media/dvb/b2c2/flexcop.c @@ -212,7 +212,6 @@ void flexcop_reset_block_300(struct flexcop_device *fc) v210.sw_reset_210.Block_reset_enable = 0xb2; fc->write_ibi_reg(fc,sw_reset_210,v210); - udelay(1000); fc->write_ibi_reg(fc,ctrl_208,v208_save); } |