From: Dan Carpenter Date: Thu, 7 Nov 2013 07:48:49 +0000 (+0300) Subject: net: make ndev->irq signed for error handling X-Git-Tag: v3.13-rc1~105^2~31 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=df42153c59a38a65c6f7440d5c70d87d1c24438d;p=pandora-kernel.git net: make ndev->irq signed for error handling There is a bug in cpsw_probe() where we do: ndev->irq = platform_get_irq(pdev, 0); if (ndev->irq < 0) { The problem is that "ndev->irq" is unsigned so the error handling doesn't work. I have changed it to a regular int. Signed-off-by: Dan Carpenter Signed-off-by: David S. Miller --- Reading git-diff-tree failed