Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 164270
b: refs/heads/master
c: 8d04df4
h: refs/heads/master
v: v3
  • Loading branch information
Roel Kluin authored and Mauro Carvalho Chehab committed Sep 19, 2009
1 parent ade38f2 commit d5b66cb
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 1 deletion.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 1601fb14980b1295e00087460d57256a87f334bf
refs/heads/master: 8d04df4997b530d978d48a66655a99714af197ca
2 changes: 2 additions & 0 deletions trunk/drivers/media/dvb/frontends/lgdt3304.c
Original file line number Diff line number Diff line change
Expand Up @@ -363,6 +363,8 @@ struct dvb_frontend* lgdt3304_attach(const struct lgdt3304_config *config,

struct lgdt3304_state *state;
state = kzalloc(sizeof(struct lgdt3304_state), GFP_KERNEL);
if (state == NULL)
return NULL;
state->addr = config->i2c_address;
state->i2c = i2c;

Expand Down
2 changes: 2 additions & 0 deletions trunk/drivers/media/dvb/frontends/s921_module.c
Original file line number Diff line number Diff line change
Expand Up @@ -169,6 +169,8 @@ struct dvb_frontend* s921_attach(const struct s921_config *config,

struct s921_state *state;
state = kzalloc(sizeof(struct s921_state), GFP_KERNEL);
if (state == NULL)
return NULL;

state->addr = config->i2c_address;
state->i2c = i2c;
Expand Down

0 comments on commit d5b66cb

Please sign in to comment.