Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 93d26aea authored by David Arcari's avatar David Arcari Committed by Jiri Kosina
Browse files

HID: i2c-hid: exit if the IRQ is not valid



When i2c-core doesn't find the IRQ associated to the GPIO because
the gpiochip is not available, it assigns -EPROBE_DEFER to the irq.
We need to bail out there and on any other error in an IRQ.

Signed-off-by: default avatarDavid Arcari <darcari@redhat.com>
Signed-off-by: default avatarBenjamin Tissoires <benjamin.tissoires@redhat.com>
Reviewed-by: default avatarMika Westerberg <mika.westerberg@linux.intel.com>
Signed-off-by: default avatarJiri Kosina <jkosina@suse.cz>
parent ba18a931
Loading
Loading
Loading
Loading
+7 −0
Original line number Diff line number Diff line
@@ -956,6 +956,13 @@ static int i2c_hid_probe(struct i2c_client *client,
		return -EINVAL;
	}

	if (client->irq < 0) {
		if (client->irq != -EPROBE_DEFER)
			dev_err(&client->dev,
				"HID over i2c doesn't have a valid IRQ\n");
		return client->irq;
	}

	ihid = kzalloc(sizeof(struct i2c_hid), GFP_KERNEL);
	if (!ihid)
		return -ENOMEM;