Skip to content

Commit

Permalink
V4L/DVB (11285): Remove unecessary udelay
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
Patrick Boettcher authored and Mauro Carvalho Chehab committed Mar 30, 2009
1 parent 1662070 commit 7def728
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion drivers/media/dvb/b2c2/flexcop.c
Original file line number Diff line number Diff line change
Expand Up @@ -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);
}

Expand Down

0 comments on commit 7def728

Please sign in to comment.