The patch titled tifm: fix NULL ptr and style has been removed from the -mm tree. Its filename was tifm-fix-null-ptr-and-style.patch This patch was dropped because it was merged into mainline or a subsystem tree ------------------------------------------------------ Subject: tifm: fix NULL ptr and style From: Randy Dunlap <randy.dunlap@xxxxxxxxxx> Fix sparse NULL warning; drivers/misc/tifm_core.c:223:17: warning: Using plain integer as NULL pointer Fix style while there. Signed-off-by: Randy Dunlap <randy.dunlap@xxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxx> --- drivers/misc/tifm_core.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff -puN drivers/misc/tifm_core.c~tifm-fix-null-ptr-and-style drivers/misc/tifm_core.c --- a/drivers/misc/tifm_core.c~tifm-fix-null-ptr-and-style +++ a/drivers/misc/tifm_core.c @@ -219,8 +219,9 @@ static int tifm_device_remove(struct dev struct tifm_driver *drv = fm_dev->drv; if (drv) { - if (drv->remove) drv->remove(fm_dev); - fm_dev->drv = 0; + if (drv->remove) + drv->remove(fm_dev); + fm_dev->drv = NULL; } put_device(dev); _ Patches currently in -mm which might be from randy.dunlap@xxxxxxxxxx are origin.patch git-acpi.patch git-alsa.patch cpufreq-select-consistently-re-2619-rc5-mm1.patch git-ieee1394.patch git-input.patch git-mtd.patch mtd-esb2rom-uses-pci.patch parisc-fix-module_param-iommu-permission.patch scsi-advansys-wrap-pci-table-inside-ifdef-config_pci.patch generic-bug-implementation-handle-bug=n.patch reiser4-use-null-for-pointers.patch visws-sgivwfb-is-module-needs-exports.patch linux-fbdev-devel-is-subscribers-only.patch extend-notifier_call_chain-to-count-nr_calls-made-fixes.patch kvm-fix-null-and-c99-init-sparse-warnings.patch profile_likely-export-do_check_likely.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