Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 38264
b: refs/heads/master
c: ab9caf9
h: refs/heads/master
v: v3
  • Loading branch information
Randy Dunlap authored and Mauro Carvalho Chehab committed Oct 3, 2006
1 parent e2e1399 commit 23d86ae
Show file tree
Hide file tree
Showing 4 changed files with 6 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: dcc29cbcec8c8482eea249030e0aa65b7451073d
refs/heads/master: ab9caf9e221ee1b13186a9144da26ac358f2a6f4
2 changes: 1 addition & 1 deletion trunk/drivers/media/dvb/dvb-usb/gp8psk.c
Original file line number Diff line number Diff line change
Expand Up @@ -219,7 +219,7 @@ static struct dvb_usb_device_properties gp8psk_properties = {
.cold_ids = { &gp8psk_usb_table[0], NULL },
.warm_ids = { &gp8psk_usb_table[1], NULL },
},
{ 0 },
{ NULL },
}
};

Expand Down
2 changes: 1 addition & 1 deletion trunk/drivers/media/video/cx88/cx88-blackbird.c
Original file line number Diff line number Diff line change
Expand Up @@ -896,7 +896,7 @@ static int mpeg_do_ioctl(struct inode *inode, struct file *file,
snprintf(name, sizeof(name), "%s/2", core->name);
printk("%s/2: ============ START LOG STATUS ============\n",
core->name);
cx88_call_i2c_clients(core, VIDIOC_LOG_STATUS, 0);
cx88_call_i2c_clients(core, VIDIOC_LOG_STATUS, NULL);
cx2341x_log_status(&dev->params, name);
printk("%s/2: ============= END LOG STATUS =============\n",
core->name);
Expand Down
4 changes: 3 additions & 1 deletion trunk/drivers/media/video/pvrusb2/pvrusb2-i2c-chips-v4l2.c
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@
*
*/

#include <linux/kernel.h>
#include "pvrusb2-i2c-core.h"
#include "pvrusb2-hdw-internal.h"
#include "pvrusb2-debug.h"
Expand Down Expand Up @@ -89,7 +90,8 @@ void pvr2_i2c_probe(struct pvr2_hdw *hdw,struct pvr2_i2c_client *cp)

const struct pvr2_i2c_op *pvr2_i2c_get_op(unsigned int idx)
{
if (idx >= sizeof(ops)/sizeof(ops[0])) return 0;
if (idx >= ARRAY_SIZE(ops))
return NULL;
return ops[idx];
}

Expand Down

0 comments on commit 23d86ae

Please sign in to comment.