The patch titled Add scsi_add_host() failure handling for nsp32 has been removed from the -mm tree. Its filename is add-scsi_add_host-failure-handling-for-nsp32.patch This patch was dropped because it was merged into mainline or a subsystem tree ------------------------------------------------------ Subject: Add scsi_add_host() failure handling for nsp32 From: GOTO Masanori <gotom@xxxxxxxxxx> Add scsi_add_host() failure handling for nsp32 and silence warning. drivers/scsi/nsp32.c:2888: warning: ignoring return value of 'Scsi_add_host', declared with attribute warn_unused_result Signed-off-by: Jesper Juhl <jesper.juhl@xxxxxxxxx> Signed-off-by: GOTO Masanori <gotom@xxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxx> --- drivers/scsi/nsp32.c | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff -puN drivers/scsi/nsp32.c~add-scsi_add_host-failure-handling-for-nsp32 drivers/scsi/nsp32.c --- a/drivers/scsi/nsp32.c~add-scsi_add_host-failure-handling-for-nsp32 +++ a/drivers/scsi/nsp32.c @@ -2885,12 +2885,19 @@ static int nsp32_detect(struct scsi_host } #if (LINUX_VERSION_CODE > KERNEL_VERSION(2,5,73)) - scsi_add_host (host, &PCIDEV->dev); + ret = scsi_add_host(host, &PCIDEV->dev); + if (ret) { + nsp32_msg(KERN_ERR, "failed to add scsi host"); + goto free_region; + } scsi_scan_host(host); #endif pci_set_drvdata(PCIDEV, host); return DETECT_OK; + free_region: + release_region(host->io_port, host->n_io_port); + free_irq: free_irq(host->irq, data); _ Patches currently in -mm which might be from gotom@xxxxxxxxxx are git-scsi-misc.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