The patch titled xilinx_spi: test below 0 on unsigned irq in xilinx_spi_probe() has been added to the -mm tree. Its filename is xilinx_spi-test-below-0-on-unsigned-irq-in-xilinx_spi_probe.patch Before you just go and hit "reply", please: a) Consider who else should be cc'ed b) Prefer to cc a suitable mailing list as well c) Ideally: find the original patch on the mailing list and do a reply-to-all to that, adding suitable additional cc's *** Remember to use Documentation/SubmitChecklist when testing your code *** See http://www.zip.com.au/~akpm/linux/patches/stuff/added-to-mm.txt to find out what to do about this The current -mm tree may be found at http://userweb.kernel.org/~akpm/mmotm/ ------------------------------------------------------ Subject: xilinx_spi: test below 0 on unsigned irq in xilinx_spi_probe() From: Roel Kluin <12o3l@xxxxxxxxxx> xilinx_spi->irq is unsigned, so the test fails Signed-off-by: Roel Kluin <12o3l@xxxxxxxxxx> Cc: David Brownell <dbrownell@xxxxxxxxxxxxxxxxxxxxx> Cc: Andrei Konovalov <akonovalov@xxxxxxxxxxxxx> Cc: Yuri Frolov <yfrolov@xxxxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- drivers/spi/xilinx_spi.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff -puN drivers/spi/xilinx_spi.c~xilinx_spi-test-below-0-on-unsigned-irq-in-xilinx_spi_probe drivers/spi/xilinx_spi.c --- a/drivers/spi/xilinx_spi.c~xilinx_spi-test-below-0-on-unsigned-irq-in-xilinx_spi_probe +++ a/drivers/spi/xilinx_spi.c @@ -353,11 +353,12 @@ static int __init xilinx_spi_probe(struc goto put_master; } - xspi->irq = platform_get_irq(dev, 0); - if (xspi->irq < 0) { + ret = platform_get_irq(dev, 0); + if (ret < 0) { ret = -ENXIO; goto unmap_io; } + xspi->irq = ret; master->bus_num = pdata->bus_num; master->num_chipselect = pdata->num_chipselect; _ Patches currently in -mm which might be from 12o3l@xxxxxxxxxx are atmel_lcdfb-fix-pixclok-divider-calculation.patch linux-next.patch ehca-ret-is-unsigned-ibmebus_request_irq-negative-return-ignored-in-hca_create_eq.patch block-blk-mergec-inverted-likeliness-in-ll_back_merge_fn.patch spi_mpc83xx-much-improved-driver.patch xilinx_spi-test-below-0-on-unsigned-irq-in-xilinx_spi_probe.patch asic3-platform_get_irq-may-return-signed-unnoticed.patch likeliness-accounting-change-and-cleanup.patch likely_prof-update-to-test_and_set_bit_lock-clear_bit_unlock.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