Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

dt-bindings: touchscreen: neonode,zforce: Use standard properties

Enable touchscreen orientation to be specified by using standard
properties.

Signed-off-by: Andreas Kemnade <andreas@kemnade.info>
Reviewed-by: Rob Herring <robh@kernel.org>
Link: https://lore.kernel.org/r/20231223221213.774868-3-andreas@kemnade.info
Signed-off-by: Dmitry Torokhov <dmitry.torokhov@gmail.com>

authored by

Andreas Kemnade and committed by
Dmitry Torokhov
cc040e42 ad7ced12

+9 -4
+9 -4
Documentation/devicetree/bindings/input/touchscreen/neonode,zforce.yaml
··· 9 9 maintainers: 10 10 - Heiko Stuebner <heiko@sntech.de> 11 11 12 + allOf: 13 + - $ref: touchscreen.yaml# 14 + 12 15 properties: 13 16 compatible: 14 17 const: neonode,zforce ··· 29 26 maxItems: 1 30 27 31 28 x-size: 29 + deprecated: true 32 30 $ref: /schemas/types.yaml#/definitions/uint32 33 31 34 32 y-size: 33 + deprecated: true 35 34 $ref: /schemas/types.yaml#/definitions/uint32 36 35 37 36 vdd-supply: true ··· 43 38 - reg 44 39 - interrupts 45 40 - reset-gpios 46 - - x-size 47 - - y-size 48 41 49 42 unevaluatedProperties: false 50 43 ··· 63 60 reset-gpios = <&gpio5 9 0>; /* RST */ 64 61 irq-gpios = <&gpio5 6 0>; /* IRQ, optional */ 65 62 66 - x-size = <800>; 67 - y-size = <600>; 63 + touchscreen-min-x = <0>; 64 + touchscreen-size-x = <800>; 65 + touchscreen-min-y = <0>; 66 + touchscreen-size-y = <600>; 68 67 }; 69 68 }; 70 69 ...