drivers/ata/pata_ep93xx.c: use signed int type for result of platform_get_irq()
authorAndrey Utkin <andrey.krieger.utkin@gmail.com>
Thu, 17 Jul 2014 12:13:23 +0000 (15:13 +0300)
committerTejun Heo <tj@kernel.org>
Thu, 17 Jul 2014 12:36:13 +0000 (08:36 -0400)
commita2a9e02b5b67a7a32a14ab6c4c331a1a0c23a1db
treef473c9ed7592fd393ca844da939b1fa2c2a096e5
parenteec7e1c16d2b65e38137686dd9b7e102c2150905
drivers/ata/pata_ep93xx.c: use signed int type for result of platform_get_irq()

[linux-3.16-rc5/drivers/ata/pata_ep93xx.c:929]: (style) Checking if unsigned
variable 'irq' is less than zero.

Source code is

    irq = platform_get_irq(pdev, 0);
    if (irq < 0) {

but

    unsigned int irq;

$ fgrep platform_get_irq `find . -name \*.h -print`
./include/linux/platform_device.h:extern int platform_get_irq(struct
platform_device *, unsigned int);

Now using "int" type instead of "unsigned int" for "irq" variable.

Bugzilla: https://bugzilla.kernel.org/show_bug.cgi?id=80401
Reported-by: David Binderman <dcb314@hotmail.com>
Signed-off-by: Andrey Utkin <andrey.krieger.utkin@gmail.com>
Signed-off-by: Tejun Heo <tj@kernel.org>
drivers/ata/pata_ep93xx.c