[PATCH] drivers/media: use NULL instead of 0 for ptrs

From: Randy Dunlap
Date: Tue Sep 26 2006 - 00:51:14 EST


From: Randy Dunlap <rdunlap@xxxxxxxxxxxx>

Use NULL instead of 0 for pointer value, eliminate sparse warnings.

Signed-off-by: Randy Dunlap <rdunlap@xxxxxxxxxxxx>
---
drivers/media/dvb/dvb-usb/gp8psk.c | 2 +-
drivers/media/video/cx88/cx88-blackbird.c | 2 +-
drivers/media/video/pvrusb2/pvrusb2-i2c-chips-v4l2.c | 4 +++-
3 files changed, 5 insertions(+), 3 deletions(-)

--- linux-2618-g4.orig/drivers/media/dvb/dvb-usb/gp8psk.c
+++ linux-2618-g4/drivers/media/dvb/dvb-usb/gp8psk.c
@@ -217,7 +217,7 @@ static struct dvb_usb_properties gp8psk_
.cold_ids = { &gp8psk_usb_table[0], NULL },
.warm_ids = { &gp8psk_usb_table[1], NULL },
},
- { 0 },
+ { NULL },
}
};

--- linux-2618-g4.orig/drivers/media/video/cx88/cx88-blackbird.c
+++ linux-2618-g4/drivers/media/video/cx88/cx88-blackbird.c
@@ -896,7 +896,7 @@ static int mpeg_do_ioctl(struct inode *i
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);
--- linux-2618-g4.orig/drivers/media/video/pvrusb2/pvrusb2-i2c-chips-v4l2.c
+++ linux-2618-g4/drivers/media/video/pvrusb2/pvrusb2-i2c-chips-v4l2.c
@@ -19,6 +19,7 @@
*
*/

+#include <linux/kernel.h>
#include "pvrusb2-i2c-core.h"
#include "pvrusb2-hdw-internal.h"
#include "pvrusb2-debug.h"
@@ -93,7 +94,8 @@ void pvr2_i2c_probe(struct pvr2_hdw *hdw

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];
}



---
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/