Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 161428
b: refs/heads/master
c: 0389b34
h: refs/heads/master
v: v3
  • Loading branch information
Matthias Schwarzott authored and Mauro Carvalho Chehab committed Sep 12, 2009
1 parent b443a17 commit 0f5ac91
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 5 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: de81c3c3f5db3ca35548c54024df50be18d64830
refs/heads/master: 0389b34e7c5c2dcdef61ed1741db674b47e4dc00
7 changes: 4 additions & 3 deletions trunk/drivers/media/dvb/frontends/mt312.c
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ static int mt312_read(struct mt312_state *state, const enum mt312_reg_addr reg,
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");
}

Expand All @@ -103,7 +103,7 @@ static int mt312_write(struct mt312_state *state, const enum mt312_reg_addr reg,
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");
}

Expand Down Expand Up @@ -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 =
Expand Down
2 changes: 1 addition & 1 deletion trunk/drivers/media/dvb/frontends/zl10036.c
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@

#include <linux/module.h>
#include <linux/dvb/frontend.h>
#include <asm/types.h>
#include <linux/types.h>

#include "zl10036.h"

Expand Down

0 comments on commit 0f5ac91

Please sign in to comment.