The patch titled emove unnecessary check in drivers/pci/hotplug/pciehp_ctrl.c has been removed from the -mm tree. Its filename is remove-unnecessary-check-in.patch This patch was dropped because it was merged into mainline or a subsystem tree ------------------------------------------------------ Subject: emove unnecessary check in drivers/pci/hotplug/pciehp_ctrl.c From: Eric Sesterhenn <snakebyte@xxxxxx> This was spotted by coverity (cid #819). We dereference p_slot earlier in the function, and i found no way it could become NULL anywhere. Signed-off-by: Eric Sesterhenn <snakebyte@xxxxxx> Cc: Greg KH <greg@xxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxx> --- drivers/pci/hotplug/pciehp_ctrl.c | 3 +-- 1 files changed, 1 insertion(+), 2 deletions(-) diff -puN drivers/pci/hotplug/pciehp_ctrl.c~remove-unnecessary-check-in drivers/pci/hotplug/pciehp_ctrl.c --- a/drivers/pci/hotplug/pciehp_ctrl.c~remove-unnecessary-check-in +++ a/drivers/pci/hotplug/pciehp_ctrl.c @@ -790,8 +790,7 @@ int pciehp_enable_slot(struct slot *p_sl p_slot->hpc_ops->get_latch_status(p_slot, &getstatus); } - if (p_slot) - update_slot_info(p_slot); + update_slot_info(p_slot); return rc; } _ Patches currently in -mm which might be from snakebyte@xxxxxx are origin.patch git-dvb.patch git-gfs2.patch possible-dereference-in.patch git-intelfb.patch remove-unnecessary-check-in-drivers-video-intelfb-intelfbhwc.patch remove-unnecessary-check-in-drivers-net-depcac.patch git-net.patch off-by-one-in-arch-ppc-platforms-mpc8.patch git-scsi-misc.patch remove-unnecessary-check-in-drivers-scsi-sgc.patch overrun-in-drivers-scsi-scsic.patch uninitialized-variable-in-drivers-net-wan-syncpppc.patch off-by-one-in-drivers-char-mwave-mwaveddc.patch remove-unnecessary-check-in-drivers-rtc-rtc-v3020c.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