The patch titled drivers/media: use NULL instead of 0 for ptrs has been removed from the -mm tree. Its filename is drivers-media-use-null-instead-of-0-for-ptrs.patch This patch was dropped because it was merged into mainline or a subsystem tree ------------------------------------------------------ Subject: drivers/media: use NULL instead of 0 for ptrs From: Randy Dunlap <rdunlap@xxxxxxxxxxxx> Use NULL instead of 0 for pointer value, eliminate sparse warnings. Signed-off-by: Randy Dunlap <rdunlap@xxxxxxxxxxxx> Cc: Mauro Carvalho Chehab <mchehab@xxxxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxx> --- 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(-) diff -puN drivers/media/dvb/dvb-usb/gp8psk.c~drivers-media-use-null-instead-of-0-for-ptrs drivers/media/dvb/dvb-usb/gp8psk.c --- a/drivers/media/dvb/dvb-usb/gp8psk.c~drivers-media-use-null-instead-of-0-for-ptrs +++ a/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 }, } }; diff -puN drivers/media/video/cx88/cx88-blackbird.c~drivers-media-use-null-instead-of-0-for-ptrs drivers/media/video/cx88/cx88-blackbird.c --- a/drivers/media/video/cx88/cx88-blackbird.c~drivers-media-use-null-instead-of-0-for-ptrs +++ a/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); diff -puN drivers/media/video/pvrusb2/pvrusb2-i2c-chips-v4l2.c~drivers-media-use-null-instead-of-0-for-ptrs drivers/media/video/pvrusb2/pvrusb2-i2c-chips-v4l2.c --- a/drivers/media/video/pvrusb2/pvrusb2-i2c-chips-v4l2.c~drivers-media-use-null-instead-of-0-for-ptrs +++ a/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" @@ -89,7 +90,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]; } _ Patches currently in -mm which might be from rdunlap@xxxxxxxxxxxx are origin.patch git-acpi.patch acpi-fix-printk-format-warnings.patch git-dvb.patch git-lxdialog.patch mtd-printk-format-warning.patch pcmcia-ds-must_check-fixes.patch git-scsi-misc.patch tiacx-sparse-cleanups.patch allow-proc-configgz-to-be-built-as-a-module.patch lib-add-gen_pool_destroy.patch make-genpool-allocator-adhere-to-kernel-doc-standards.patch list-module-taint-flags-in-oops-panic.patch list-module-taint-flags-in-oops-panic-tidy.patch fix-embedded-sysctl-menu.patch fs-cache-cachefiles-a-cache-that-backs-onto-a-mounted-filesystem-cachefiles-printk-format-warning.patch ecryptfs-fix-printk-format-warnings.patch ide-core-must_check-fixes.patch documentation-fixes-in-intel810txt.patch - To unsubscribe from this list: send the line "unsubscribe mm-commits" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html