drivers: irq: fix compile warning

In the function gpio_get_intr_type, 'type' may be
used uninitialized if not add default process.

Change-Id: I917fecc2ed06cc844c30c93508084f32608edf6f
Signed-off-by: Jason Zhu <jason.zhu@rock-chips.com>
This commit is contained in:
Jason Zhu 2018-03-08 14:42:52 +08:00 committed by Kever Yang
parent 82e713e13f
commit 86457e1608
1 changed files with 2 additions and 0 deletions

View File

@ -165,6 +165,8 @@ static int gpio_get_intr_type(void __iomem *regbase,
case 0x03:
type = GPIOEdgelRising;
break;
default:
type = -EINVAL;
}
return type;