]> git.baikalelectronics.ru Git - kernel.git/commit
tty/serial: digicolor: Fix bad usage of IS_ERR_VALUE
authorGuenter Roeck <linux@roeck-us.net>
Tue, 9 Feb 2016 15:08:59 +0000 (07:08 -0800)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Mon, 15 Feb 2016 01:39:36 +0000 (17:39 -0800)
commitb98d8fc5fc61bed900f2f7ecce0c688c0fef00f6
treea5ab114751d94d4babe555a19b34450c43a7d165
parentc57714e25311521ef40d4297ac5076241f4a76c1
tty/serial: digicolor: Fix bad usage of IS_ERR_VALUE

IS_ERR_VALUE() assumes that its parameter is an unsigned long.
It can not be used to check if an unsigned int reflects an error.
Doing so can result in the following build warning.

drivers/tty/serial/digicolor-usart.c: In function ‘digicolor_uart_probe’:
include/linux/err.h:21:38: warning:
comparison is always false due to limited range of data type
drivers/tty/serial/digicolor-usart.c:485:6: note:
in expansion of macro ‘IS_ERR_VALUE’

If that warning is seen, an error return from platform_get_irq() is missed.

Signed-off-by: Guenter Roeck <linux@roeck-us.net>
Acked-by: Baruch Siach <baruch@tkos.co.il>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/tty/serial/digicolor-usart.c