@@ -53,6 +53,7 @@ enum eeti_dev_id {
53
53
EETI_EXC3000 ,
54
54
EETI_EXC80H60 ,
55
55
EETI_EXC80H84 ,
56
+ EETI_EXC81W32 ,
56
57
};
57
58
58
59
static struct eeti_dev_info exc3000_info [] = {
@@ -68,6 +69,10 @@ static struct eeti_dev_info exc3000_info[] = {
68
69
.name = "EETI EXC80H84 Touch Screen" ,
69
70
.max_xy = SZ_16K - 1 ,
70
71
},
72
+ [EETI_EXC81W32 ] = {
73
+ .name = "EETI EXC81W32 Touch Screen" ,
74
+ .max_xy = SZ_16K - 1 ,
75
+ },
71
76
};
72
77
73
78
struct exc3000_data {
@@ -441,6 +446,7 @@ static const struct i2c_device_id exc3000_id[] = {
441
446
{ "exc3000" , EETI_EXC3000 },
442
447
{ "exc80h60" , EETI_EXC80H60 },
443
448
{ "exc80h84" , EETI_EXC80H84 },
449
+ { "exc81w32" , EETI_EXC81W32 },
444
450
{ }
445
451
};
446
452
MODULE_DEVICE_TABLE (i2c , exc3000_id );
@@ -450,6 +456,7 @@ static const struct of_device_id exc3000_of_match[] = {
450
456
{ .compatible = "eeti,exc3000" , .data = & exc3000_info [EETI_EXC3000 ] },
451
457
{ .compatible = "eeti,exc80h60" , .data = & exc3000_info [EETI_EXC80H60 ] },
452
458
{ .compatible = "eeti,exc80h84" , .data = & exc3000_info [EETI_EXC80H84 ] },
459
+ { .compatible = "eeti,exc81w32" , .data = & exc3000_info [EETI_EXC81W32 ] },
453
460
{ }
454
461
};
455
462
MODULE_DEVICE_TABLE (of , exc3000_of_match );
0 commit comments