Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit f139c74a authored by David S. Miller's avatar David S. Miller
Browse files
parents bd695a5f 26bcd8b7
Loading
Loading
Loading
Loading
+13 −0
Original line number Diff line number Diff line
@@ -281,6 +281,19 @@ gestures can normally be extracted from it.
If INPUT_PROP_SEMI_MT is not set, the device is assumed to be a true MT
device.

INPUT_PROP_TOPBUTTONPAD:
-----------------------
Some laptops, most notably the Lenovo *40 series provide a trackstick
device but do not have physical buttons associated with the trackstick
device. Instead, the top area of the touchpad is marked to show
visual/haptic areas for left, middle, right buttons intended to be used
with the trackstick.

If INPUT_PROP_TOPBUTTONPAD is set, userspace should emulate buttons
accordingly. This property does not affect kernel behavior.
The kernel does not provide button emulation for such devices but treats
them as any other INPUT_PROP_BUTTONPAD device.

Guidelines:
==========
The guidelines below ensure proper single-touch and multi-finger functionality.
+6 −0
Original line number Diff line number Diff line
@@ -6961,6 +6961,12 @@ L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
S:	Maintained
F:	drivers/pinctrl/pinctrl-at91.c

PIN CONTROLLER - RENESAS
M:	Laurent Pinchart <laurent.pinchart@ideasonboard.com>
L:	linux-sh@vger.kernel.org
S:	Maintained
F:	drivers/pinctrl/sh-pfc/

PIN CONTROLLER - SAMSUNG
M:	Tomasz Figa <t.figa@samsung.com>
M:	Thomas Abraham <thomas.abraham@linaro.org>
+3 −1
Original line number Diff line number Diff line
VERSION = 3
PATCHLEVEL = 16
SUBLEVEL = 0
EXTRAVERSION = -rc6
EXTRAVERSION = -rc7
NAME = Shuffling Zombie Juror

# *DOCUMENTATION*
@@ -688,6 +688,8 @@ KBUILD_CFLAGS += -fomit-frame-pointer
endif
endif

KBUILD_CFLAGS   += $(call cc-option, -fno-var-tracking-assignments)

ifdef CONFIG_DEBUG_INFO
KBUILD_CFLAGS	+= -g
KBUILD_AFLAGS	+= -Wa,-gdwarf-2
+1 −1
Original line number Diff line number Diff line
@@ -73,7 +73,7 @@

		L2: l2-cache {
			compatible = "arm,pl310-cache";
			reg = <0xfc10000 0x100000>;
			reg = <0x100000 0x100000>;
			interrupts = <0 15 4>;
			cache-unified;
			cache-level = <2>;
+1 −1
Original line number Diff line number Diff line
@@ -353,7 +353,7 @@
	};

	twl_power: power {
		compatible = "ti,twl4030-power-n900", "ti,twl4030-power-idle-osc-off";
		compatible = "ti,twl4030-power-n900";
		ti,use_poweroff;
	};
};
Loading