Hi,
On 18-06-18 01:58, youling257 wrote:
Add touchscreen info for the ONDA V891W Dual OS tablet
Nitpick: still missing a period '.' at the end, this should be:
Add touchscreen info for the ONDA V891W Dual OS tablet.
Reviewed-by: Hans de Goede <hdegoede@xxxxxxxxxx>
Signed-off-by: youling257 <youling257@xxxxxxxxx>
As Andy indicated you need to use your real name when submitting
kernel patches, not an internet alias (or a nick).
So you need to re-submit this with something like this:
Signed-off-by: FirstName LastName <youling257@xxxxxxxxx>
---
 drivers/platform/x86/touchscreen_dmi.c | 27 ++++++++++++++++++++++++++
 1 file changed, 27 insertions(+)
diff --git a/drivers/platform/x86/touchscreen_dmi.c b/drivers/platform/x86/touchscreen_dmi.c
index 6284946cb0d1..2ad9327c8c0f 100644
--- a/drivers/platform/x86/touchscreen_dmi.c
+++ b/drivers/platform/x86/touchscreen_dmi.c
@@ -221,6 +221,24 @@ static const struct ts_dmi_data onda_v891w_v1_data = {
ÂÂÂÂÂ .propertiesÂÂÂ = onda_v891w_v1_props,
 };
+static const struct property_entry onda_v891w_v3_props[] = {
+ÂÂÂ PROPERTY_ENTRY_U32("touchscreen-min-x", 35),
+ÂÂÂ PROPERTY_ENTRY_U32("touchscreen-min-y", 15),
+ÂÂÂ PROPERTY_ENTRY_U32("touchscreen-size-x", 1625),
+ÂÂÂ PROPERTY_ENTRY_U32("touchscreen-size-y", 1135),
+ÂÂÂ PROPERTY_ENTRY_BOOL("touchscreen-inverted-y"),
+ÂÂÂ PROPERTY_ENTRY_STRING("firmware-name",
+ÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂ "gsl3676-onda-v891w-v3.fw"),
+ÂÂÂ PROPERTY_ENTRY_U32("silead,max-fingers", 10),
+ÂÂÂ PROPERTY_ENTRY_BOOL("silead,home-button"),
+ÂÂÂ { }
+};
+
+static const struct ts_dmi_data onda_v891w_v3_data = {
+ÂÂÂ .acpi_nameÂÂÂ = "MSSL1680:00",
+ÂÂÂ .propertiesÂÂÂ = onda_v891w_v3_props,
+};
+
 static const struct property_entry pipo_w2s_props[] = {
ÂÂÂÂÂ PROPERTY_ENTRY_U32("touchscreen-size-x", 1660),
ÂÂÂÂÂ PROPERTY_ENTRY_U32("touchscreen-size-y", 880),
@@ -481,6 +499,15 @@ static const struct dmi_system_id touchscreen_dmi_table[] = {
ÂÂÂÂÂÂÂÂÂÂÂÂÂ DMI_EXACT_MATCH(DMI_BIOS_VERSION, "ONDA.W89EBBN08"),
ÂÂÂÂÂÂÂÂÂ },
ÂÂÂÂÂ },
+ÂÂÂ {
+ÂÂÂÂÂÂÂ /* ONDA V891w Dual OS P891DCF2V1A01274 64GB */
+ÂÂÂÂÂÂÂ .driver_data = (void *)&onda_v891w_v3_data,
+ÂÂÂÂÂÂÂ .matches = {
+ÂÂÂÂÂÂÂÂÂÂÂ DMI_MATCH(DMI_SYS_VENDOR, "Insyde"),
+ÂÂÂÂÂÂÂÂÂÂÂ DMI_MATCH(DMI_PRODUCT_NAME, "ONDA Tablet"),
+ÂÂÂÂÂÂÂÂÂÂÂ DMI_MATCH(DMI_BIOS_VERSION, "ONDA.D890HBBNR0A"),
+ÂÂÂÂÂÂÂ },
+ÂÂÂ },
ÂÂÂÂÂ {
ÂÂÂÂÂÂÂÂÂ /* Pipo W2S */
ÂÂÂÂÂÂÂÂÂ .driver_data = (void *)&pipo_w2s_data,