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

Commit 6e5b9601 authored by Jarod Wilson's avatar Jarod Wilson Committed by Mauro Carvalho Chehab
Browse files

[media] ir-kbd-i2c: pass device code w/key in hauppauge case



The new hauppauge key tables use both device code button code.

Signed-off-by: default avatarJarod Wilson <jarod@redhat.com>
Signed-off-by: default avatarMauro Carvalho Chehab <mchehab@redhat.com>
parent 20624106
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -108,7 +108,7 @@ static int get_key_haup_common(struct IR_i2c *ir, u32 *ir_key, u32 *ir_raw,
		start, range, toggle, dev, code);

	/* return key */
	*ir_key = code;
	*ir_key = (dev << 8) | code;
	*ir_raw = ircode;
	return 1;
}