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

Commit 6b5625b2 authored by Simon Wood's avatar Simon Wood Committed by Jiri Kosina
Browse files

HID: hid-lg4ff: Support new version of G27



It has been reported that there is a new hardware version of the G27
in the 'wild'. This patch add's this new revision so that it can be
sent the command to switch to native mode.

Reported-by: default avatar"Ivan Baldo" <ibaldo@adinet.com.uy>
Tested-by: default avatar"evilcow" <evilcow93@yahoo.com>
Signed-off-by: default avatarSimon Wood <simon@mungewell.org>
Signed-off-by: default avatarJiri Kosina <jkosina@suse.cz>
parent 47587fc0
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
@@ -43,6 +43,7 @@
#define G25_REV_MIN 0x22
#define G27_REV_MAJ 0x12
#define G27_REV_MIN 0x38
#define G27_2_REV_MIN 0x39

#define to_hid_device(pdev) container_of(pdev, struct hid_device, dev)

@@ -130,6 +131,7 @@ static const struct lg4ff_usb_revision lg4ff_revs[] = {
	{DFP_REV_MAJ,  DFP_REV_MIN,  &native_dfp},	/* Driving Force Pro */
	{G25_REV_MAJ,  G25_REV_MIN,  &native_g25},	/* G25 */
	{G27_REV_MAJ,  G27_REV_MIN,  &native_g27},	/* G27 */
	{G27_REV_MAJ,  G27_2_REV_MIN,  &native_g27},	/* G27 v2 */
};

/* Recalculates X axis value accordingly to currently selected range */