Input: sx8654 - signedness bug in sx8654_irq()
"irqsrc" needs to be signed for the error handling to work. Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com> Signed-off-by: Dmitry Torokhov <dmitry.torokhov@gmail.com>
This commit is contained in:
Родитель
37dee1acdd
Коммит
b6310affbe
|
@ -79,7 +79,7 @@ struct sx8654 {
|
||||||
static irqreturn_t sx8654_irq(int irq, void *handle)
|
static irqreturn_t sx8654_irq(int irq, void *handle)
|
||||||
{
|
{
|
||||||
struct sx8654 *sx8654 = handle;
|
struct sx8654 *sx8654 = handle;
|
||||||
u8 irqsrc;
|
int irqsrc;
|
||||||
u8 data[4];
|
u8 data[4];
|
||||||
unsigned int x, y;
|
unsigned int x, y;
|
||||||
int retval;
|
int retval;
|
||||||
|
|
Загрузка…
Ссылка в новой задаче