drivers: irda: fix sign bug
platform_get_irq_byname() can return negative results, it is not seen to unsigned irq. Make it signed. Signed-off-by: Kulikov Vasiliy <segooon@gmail.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
752ef8b541
commit
9f27fb8514
1 changed files with 1 additions and 1 deletions
|
@ -709,7 +709,7 @@ static int __devinit sh_sir_probe(struct platform_device *pdev)
|
||||||
struct sh_sir_self *self;
|
struct sh_sir_self *self;
|
||||||
struct resource *res;
|
struct resource *res;
|
||||||
char clk_name[8];
|
char clk_name[8];
|
||||||
unsigned int irq;
|
int irq;
|
||||||
int err = -ENOMEM;
|
int err = -ENOMEM;
|
||||||
|
|
||||||
res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
|
res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
|
||||||
|
|
Loading…
Add table
Reference in a new issue