From: Anton Vorontsov Date: Mon, 6 Oct 2008 07:26:54 +0000 (+0000) Subject: powerpc: Fix no interrupt handling in pata_of_platform X-Git-Tag: v2.6.28-rc1~569^2~34 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=4538d0ca71b4f8991c4c0f433d7d17805738326e;p=pandora-kernel.git powerpc: Fix no interrupt handling in pata_of_platform When no interrupt is specified the pata_of_platform fills the irq_res resource with -1, which is wrong to do for two reasons: 1. By definition, 'no irq' should be IRQ 0, not some negative integer; 2. pata_platform checks for irq_res.start > 0, but since irq_res.start is unsigned type, the check will be true for `-1'. Reported-by: Steven A. Falco Signed-off-by: Anton Vorontsov Signed-off-by: Benjamin Herrenschmidt --- Reading git-diff-tree failed