The patch number 9263 was added via Steven Toth <[EMAIL PROTECTED]> to http://linuxtv.org/hg/v4l-dvb master development tree.
Kernel patches in this development tree may be modified to be backward compatible with older kernels. Compatibility modifications will be removed before inclusion into the mainstream Kernel If anyone has any objections, please let us know by sending a message to: [EMAIL PROTECTED] ------ From: Steven Toth <[EMAIL PROTECTED]> mxl5005s: Checkpatch compliance mxl5005s: Checkpatch compliance Priority: normal Signed-off-by: Steven Toth <[EMAIL PROTECTED]> --- linux/drivers/media/common/tuners/mxl5005s.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff -r 5d306d9231eb -r 4663515ca9bc linux/drivers/media/common/tuners/mxl5005s.c --- a/linux/drivers/media/common/tuners/mxl5005s.c Thu Oct 16 19:30:45 2008 -0400 +++ b/linux/drivers/media/common/tuners/mxl5005s.c Thu Oct 16 19:31:56 2008 -0400 @@ -3483,7 +3483,9 @@ static u16 MXL_ControlWrite_Group(struct } ctrlVal = 0; for (k = 0; k < state->MXL_Ctrl[i].size; k++) - ctrlVal += state->MXL_Ctrl[i].val[k] * (1 << k); + ctrlVal += state-> + MXL_Ctrl[i].val[k] * + (1 << k); } else return -1; } @@ -3583,7 +3585,7 @@ static void MXL_RegWriteBit(struct dvb_f static u32 MXL_Ceiling(u32 value, u32 resolution) { - return (value/resolution + (value % resolution > 0 ? 1 : 0)); + return value / resolution + (value % resolution > 0 ? 1 : 0); } /* Retrieve the Initialzation Registers */ --- Patch is available at: http://linuxtv.org/hg/v4l-dvb/rev/4663515ca9bc00f206f9de788ac82e208bcb6cce _______________________________________________ linuxtv-commits mailing list linuxtv-commits@linuxtv.org http://www.linuxtv.org/cgi-bin/mailman/listinfo/linuxtv-commits