Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 92464
b: refs/heads/master
c: d6f34d7
h: refs/heads/master
v: v3
  • Loading branch information
Jean Delvare authored and Mauro Carvalho Chehab committed Apr 24, 2008
1 parent 63a706f commit d0089d3
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 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: 2c4a07b2da61bcd33f18195ff7f355c5bb285904
refs/heads/master: d6f34d7adddb144c3b450e15df3749f0e0a651c6
6 changes: 3 additions & 3 deletions trunk/drivers/media/video/ir-kbd-i2c.c
Original file line number Diff line number Diff line change
Expand Up @@ -508,7 +508,7 @@ static int ir_probe(struct i2c_adapter *adap)
static const int probe_em28XX[] = { 0x30, 0x47, -1 };
static const int probe_cx88[] = { 0x18, 0x6b, 0x71, -1 };
static const int probe_cx23885[] = { 0x6b, -1 };
const int *probe = NULL;
const int *probe;
struct i2c_client *c;
unsigned char buf;
int i, rc;
Expand All @@ -532,9 +532,9 @@ static int ir_probe(struct i2c_adapter *adap)
case I2C_HW_B_CX23885:
probe = probe_cx23885;
break;
}
if (NULL == probe)
default:
return 0;
}

c = kzalloc(sizeof(*c), GFP_KERNEL);
if (!c)
Expand Down

0 comments on commit d0089d3

Please sign in to comment.