diff mbox series

touchscreen_dmi.c : small changes for Archos 101 Cesium Educ tablet

Message ID 20230714105117.192938-1-tomlohave@gmail.com (mailing list archive)
State Accepted, archived
Headers show
Series touchscreen_dmi.c : small changes for Archos 101 Cesium Educ tablet | expand

Commit Message

Thomas GENTY July 14, 2023, 10:51 a.m. UTC
It fixes axes and adds home button support as suggested by Hans de Goede

Signed-off-by: Thomas GENTY <tomlohave@gmail.com>
---
 drivers/platform/x86/touchscreen_dmi.c | 7 ++++---
 1 file changed, 4 insertions(+), 3 deletions(-)

Comments

Hans de Goede July 14, 2023, 3:48 p.m. UTC | #1
Hi,

On 7/14/23 12:51, Thomas GENTY wrote:
> It fixes axes and adds home button support as suggested by Hans de Goede
> 
> Signed-off-by: Thomas GENTY <tomlohave@gmail.com>

Thank you for your patch, I've applied this patch to my fixes
branch:
https://git.kernel.org/pub/scm/linux/kernel/git/pdx86/platform-drivers-x86.git/log/?h=fixes

Note it will show up in my fixes branch once I've pushed my
local branch there, which might take a while.

I will include this patch in my next fixes pull-req to Linus
for the current kernel development cycle.

Regards,

Hans



> ---
>  drivers/platform/x86/touchscreen_dmi.c | 7 ++++---
>  1 file changed, 4 insertions(+), 3 deletions(-)
> 
> diff --git a/drivers/platform/x86/touchscreen_dmi.c b/drivers/platform/x86/touchscreen_dmi.c
> index a5b687eed8f3..f9301a9382e7 100644
> --- a/drivers/platform/x86/touchscreen_dmi.c
> +++ b/drivers/platform/x86/touchscreen_dmi.c
> @@ -27,11 +27,12 @@ struct ts_dmi_data {
>  /* NOTE: Please keep all entries sorted alphabetically */
>  
>  static const struct property_entry archos_101_cesium_educ_props[] = {
> -	PROPERTY_ENTRY_U32("touchscreen-size-x", 1280),
> -	PROPERTY_ENTRY_U32("touchscreen-size-y", 1850),
> -	PROPERTY_ENTRY_BOOL("touchscreen-inverted-x"),
> +	PROPERTY_ENTRY_U32("touchscreen-size-x", 1850),
> +	PROPERTY_ENTRY_U32("touchscreen-size-y", 1280),
> +	PROPERTY_ENTRY_BOOL("touchscreen-inverted-y"),
>  	PROPERTY_ENTRY_BOOL("touchscreen-swapped-x-y"),
>  	PROPERTY_ENTRY_U32("silead,max-fingers", 10),
> +	PROPERTY_ENTRY_BOOL("silead,home-button"),
>  	PROPERTY_ENTRY_STRING("firmware-name", "gsl1680-archos-101-cesium-educ.fw"),
>  	{ }
>  };
diff mbox series

Patch

diff --git a/drivers/platform/x86/touchscreen_dmi.c b/drivers/platform/x86/touchscreen_dmi.c
index a5b687eed8f3..f9301a9382e7 100644
--- a/drivers/platform/x86/touchscreen_dmi.c
+++ b/drivers/platform/x86/touchscreen_dmi.c
@@ -27,11 +27,12 @@  struct ts_dmi_data {
 /* NOTE: Please keep all entries sorted alphabetically */
 
 static const struct property_entry archos_101_cesium_educ_props[] = {
-	PROPERTY_ENTRY_U32("touchscreen-size-x", 1280),
-	PROPERTY_ENTRY_U32("touchscreen-size-y", 1850),
-	PROPERTY_ENTRY_BOOL("touchscreen-inverted-x"),
+	PROPERTY_ENTRY_U32("touchscreen-size-x", 1850),
+	PROPERTY_ENTRY_U32("touchscreen-size-y", 1280),
+	PROPERTY_ENTRY_BOOL("touchscreen-inverted-y"),
 	PROPERTY_ENTRY_BOOL("touchscreen-swapped-x-y"),
 	PROPERTY_ENTRY_U32("silead,max-fingers", 10),
+	PROPERTY_ENTRY_BOOL("silead,home-button"),
 	PROPERTY_ENTRY_STRING("firmware-name", "gsl1680-archos-101-cesium-educ.fw"),
 	{ }
 };