File tree 2 files changed +12
-8
lines changed 2 files changed +12
-8
lines changed Original file line number Diff line number Diff line change 17
17
#include "trackpoint.h"
18
18
19
19
static const char * const trackpoint_variants [] = {
20
- [TP_VARIANT_IBM ] = "IBM" ,
21
- [TP_VARIANT_ALPS ] = "ALPS" ,
22
- [TP_VARIANT_ELAN ] = "Elan" ,
23
- [TP_VARIANT_NXP ] = "NXP" ,
20
+ [TP_VARIANT_IBM ] = "IBM" ,
21
+ [TP_VARIANT_ALPS ] = "ALPS" ,
22
+ [TP_VARIANT_ELAN ] = "Elan" ,
23
+ [TP_VARIANT_NXP ] = "NXP" ,
24
+ [TP_VARIANT_JYT_SYNAPTICS ] = "JYT_Synaptics" ,
25
+ [TP_VARIANT_SYNAPTICS ] = "Synaptics" ,
24
26
};
25
27
26
28
/*
Original file line number Diff line number Diff line change 24
24
* 0x01 was the original IBM trackpoint, others implement very limited
25
25
* subset of trackpoint features.
26
26
*/
27
- #define TP_VARIANT_IBM 0x01
28
- #define TP_VARIANT_ALPS 0x02
29
- #define TP_VARIANT_ELAN 0x03
30
- #define TP_VARIANT_NXP 0x04
27
+ #define TP_VARIANT_IBM 0x01
28
+ #define TP_VARIANT_ALPS 0x02
29
+ #define TP_VARIANT_ELAN 0x03
30
+ #define TP_VARIANT_NXP 0x04
31
+ #define TP_VARIANT_JYT_SYNAPTICS 0x05
32
+ #define TP_VARIANT_SYNAPTICS 0x06
31
33
32
34
/*
33
35
* Commands
You can’t perform that action at this time.
0 commit comments