Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 181706
b: refs/heads/master
c: 7ccf1ee
h: refs/heads/master
v: v3
  • Loading branch information
Randy Dunlap authored and Mauro Carvalho Chehab committed Feb 26, 2010
1 parent 6de914c commit 7e87ace
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 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: 18718c96e3e10e6b821d32c50adde9fa5cc6565a
refs/heads/master: 7ccf1eea972177064b4df9d5ba68958604781db6
2 changes: 1 addition & 1 deletion trunk/drivers/media/dvb/frontends/dibx000_common.c
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,7 @@ void dibx000_exit_i2c_master(struct dibx000_i2c_master *mst)
EXPORT_SYMBOL(dibx000_exit_i2c_master);


u32 systime()
u32 systime(void)
{
struct timespec t;

Expand Down
2 changes: 1 addition & 1 deletion trunk/drivers/media/dvb/frontends/tda665x.c
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ static int tda665x_set_state(struct dvb_frontend *fe,
frequency += config->ref_divider >> 1;
frequency /= config->ref_divider;

buf[0] = (u8) (frequency & 0x7f00) >> 8;
buf[0] = (u8) ((frequency & 0x7f00) >> 8);
buf[1] = (u8) (frequency & 0x00ff) >> 0;
buf[2] = 0x80 | 0x40 | 0x02;
buf[3] = 0x00;
Expand Down

0 comments on commit 7e87ace

Please sign in to comment.