The patch number 12200 was added via Douglas Schilling Landgraf 
<dougsl...@redhat.com>
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:
        Linux Media Mailing List <linux-me...@vger.kernel.org>

------

From: Matthias Schwarzott  <z...@gentoo.org>
mt312: Fix checkpatch warnings


This patch fixes some checkpatch warnings in mt312-driver.

Priority: normal

Signed-off-by: Matthias Schwarzott <z...@gentoo.org>
Signed-off-by: Douglas Schilling Landgraf <dougsl...@redhat.com>


---

 linux/drivers/media/dvb/frontends/mt312.c   |    7 ++++---
 linux/drivers/media/dvb/frontends/zl10036.c |    2 +-
 2 files changed, 5 insertions(+), 4 deletions(-)

diff -r deaca20d01e2 -r acef4ac2a91f linux/drivers/media/dvb/frontends/mt312.c
--- a/linux/drivers/media/dvb/frontends/mt312.c Thu Jul 02 16:09:25 2009 -0300
+++ b/linux/drivers/media/dvb/frontends/mt312.c Thu Jul 02 16:17:28 2009 -0300
@@ -85,7 +85,7 @@ static int mt312_read(struct mt312_state
                int i;
                dprintk("R(%d):", reg & 0x7f);
                for (i = 0; i < count; i++)
-                       printk(" %02x", buf[i]);
+                       printk(KERN_CONT " %02x", buf[i]);
                printk("\n");
        }
 
@@ -103,7 +103,7 @@ static int mt312_write(struct mt312_stat
                int i;
                dprintk("W(%d):", reg & 0x7f);
                for (i = 0; i < count; i++)
-                       printk(" %02x", src[i]);
+                       printk(KERN_CONT " %02x", src[i]);
                printk("\n");
        }
 
@@ -744,7 +744,8 @@ static struct dvb_frontend_ops mt312_ops
                .type = FE_QPSK,
                .frequency_min = 950000,
                .frequency_max = 2150000,
-               .frequency_stepsize = (MT312_PLL_CLK / 1000) / 128, /* FIXME: 
adjust freq to real used xtal */
+               /* FIXME: adjust freq to real used xtal */
+               .frequency_stepsize = (MT312_PLL_CLK / 1000) / 128,
                .symbol_rate_min = MT312_SYS_CLK / 128, /* FIXME as above */
                .symbol_rate_max = MT312_SYS_CLK / 2,
                .caps =
diff -r deaca20d01e2 -r acef4ac2a91f linux/drivers/media/dvb/frontends/zl10036.c
--- a/linux/drivers/media/dvb/frontends/zl10036.c       Thu Jul 02 16:09:25 
2009 -0300
+++ b/linux/drivers/media/dvb/frontends/zl10036.c       Thu Jul 02 16:17:28 
2009 -0300
@@ -29,7 +29,7 @@
 
 #include <linux/module.h>
 #include <linux/dvb/frontend.h>
-#include <asm/types.h>
+#include <linux/types.h>
 #include "compat.h"
 
 #include "zl10036.h"


---

Patch is available at: 
http://linuxtv.org/hg/v4l-dvb/rev/acef4ac2a91fb627c138b02207672382e37499a7

_______________________________________________
linuxtv-commits mailing list
linuxtv-commits@linuxtv.org
http://www.linuxtv.org/cgi-bin/mailman/listinfo/linuxtv-commits

Reply via email to