Skip to content

Commit

Permalink
[media] cx88: Fix reset delays
Browse files Browse the repository at this point in the history
This was reported in March 2011 by Mirek Slugen, and a simple fix posted at the time then
never got fixed and applied. The bug is still present.
Resolves-bug: https://bugzilla.kernel.org/show_bug.cgi?id=37703

Signed-off-by: Alan Cox <alan@linux.intel.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
  • Loading branch information
Alan Cox authored and Mauro Carvalho Chehab committed Sep 23, 2012
1 parent 9a888ba commit 4699903
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions drivers/media/pci/cx88/cx88-cards.c
Original file line number Diff line number Diff line change
Expand Up @@ -3028,9 +3028,9 @@ static int cx88_xc3028_winfast1800h_callback(struct cx88_core *core,
cx_set(MO_GP1_IO, 0x1010);
mdelay(50);
cx_clear(MO_GP1_IO, 0x10);
mdelay(50);
mdelay(75);
cx_set(MO_GP1_IO, 0x10);
mdelay(50);
mdelay(75);
return 0;
}
return -EINVAL;
Expand Down

0 comments on commit 4699903

Please sign in to comment.