On Mon, Nov 21, 2005, Stephen Williams wrote: > On 11/20/05, Johannes Stezenbach <js@xxxxxxxxxxx> wrote: > > On Wed, Nov 09, 2005 Stephen Williams wrote: > > > diff -u -r1.30 cinergyT2.c > > > --- cinergyT2.c 31 Oct 2005 17:01:06 -0000 1.30 > > > +++ cinergyT2.c 9 Nov 2005 20:12:17 -0000 > > > @@ -592,10 +600,15 @@ > > > (__u16 __user *) arg); > > > > > > case FE_READ_UNCORRECTED_BLOCKS: > > > - /* UNC are already converted to host byte order... */ > > > - return put_user(stat->uncorrected_block_count, > > > - (__u32 __user *) arg); > > > + { > > > + uint32_t unc_count; > > > + > > > + unc_count = stat->uncorrected_block_count; > > > + stat->uncorrected_block_count = 0; > > > > > > + /* UNC are already converted to host byte order... */ > > > + return put_user(unc_count,(__u32 __user *) arg); > > > + } > > > case FE_SET_FRONTEND: > > > { > > > struct dvbt_set_parameters_msg *param = &cinergyt2->param; > > > > Could you please provide your Signed-off-by: line? > > (See linux/Documentation/SubmittingPatches) > > Signed-off-by: Stephen Williams <stephen.williams@xxxxxxxxx> Finally comitted to CVS. Thanks, Johannes