Skip to content

Commit dc41960

Browse files
committed
Merge remote-tracking branch 'stable/linux-6.1.y' into rpi-6.1.y
2 parents b9d2d18 + a1c449d commit dc41960

File tree

313 files changed

+2178
-809
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

313 files changed

+2178
-809
lines changed

MAINTAINERS

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5222,8 +5222,8 @@ S: Supported
52225222
W: https://wiki.samba.org/index.php/LinuxCIFS
52235223
T: git git://git.samba.org/sfrench/cifs-2.6.git
52245224
F: Documentation/admin-guide/cifs/
5225-
F: fs/cifs/
5226-
F: fs/smbfs_common/
5225+
F: fs/smb/client/
5226+
F: fs/smb/common/
52275227
F: include/uapi/linux/cifs
52285228

52295229
COMPACTPCI HOTPLUG CORE
@@ -11207,8 +11207,8 @@ L: [email protected]
1120711207
S: Maintained
1120811208
T: git git://git.samba.org/ksmbd.git
1120911209
F: Documentation/filesystems/cifs/ksmbd.rst
11210-
F: fs/ksmbd/
11211-
F: fs/smbfs_common/
11210+
F: fs/smb/common/
11211+
F: fs/smb/server/
1121211212

1121311213
KERNEL UNIT TESTING FRAMEWORK (KUnit)
1121411214
M: Brendan Higgins <[email protected]>

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# SPDX-License-Identifier: GPL-2.0
22
VERSION = 6
33
PATCHLEVEL = 1
4-
SUBLEVEL = 35
4+
SUBLEVEL = 36
55
EXTRAVERSION =
66
NAME = Curry Ramen
77

arch/arm/boot/dts/am57xx-cl-som-am57x.dts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -527,7 +527,7 @@
527527

528528
interrupt-parent = <&gpio1>;
529529
interrupts = <31 0>;
530-
pendown-gpio = <&gpio1 31 0>;
530+
pendown-gpio = <&gpio1 31 GPIO_ACTIVE_LOW>;
531531

532532

533533
ti,x-min = /bits/ 16 <0x0>;

arch/arm/boot/dts/at91sam9261ek.dts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -156,7 +156,7 @@
156156
compatible = "ti,ads7843";
157157
interrupts-extended = <&pioC 2 IRQ_TYPE_EDGE_BOTH>;
158158
spi-max-frequency = <3000000>;
159-
pendown-gpio = <&pioC 2 GPIO_ACTIVE_HIGH>;
159+
pendown-gpio = <&pioC 2 GPIO_ACTIVE_LOW>;
160160

161161
ti,x-min = /bits/ 16 <150>;
162162
ti,x-max = /bits/ 16 <3830>;

arch/arm/boot/dts/imx7d-pico-hobbit.dts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@
6464
interrupt-parent = <&gpio2>;
6565
interrupts = <7 0>;
6666
spi-max-frequency = <1000000>;
67-
pendown-gpio = <&gpio2 7 0>;
67+
pendown-gpio = <&gpio2 7 GPIO_ACTIVE_LOW>;
6868
vcc-supply = <&reg_3p3v>;
6969
ti,x-min = /bits/ 16 <0>;
7070
ti,x-max = /bits/ 16 <4095>;

arch/arm/boot/dts/imx7d-sdb.dts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -205,7 +205,7 @@
205205
pinctrl-0 = <&pinctrl_tsc2046_pendown>;
206206
interrupt-parent = <&gpio2>;
207207
interrupts = <29 0>;
208-
pendown-gpio = <&gpio2 29 GPIO_ACTIVE_HIGH>;
208+
pendown-gpio = <&gpio2 29 GPIO_ACTIVE_LOW>;
209209
touchscreen-max-pressure = <255>;
210210
wakeup-source;
211211
};

arch/arm/boot/dts/omap3-cm-t3x.dtsi

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -227,7 +227,7 @@
227227

228228
interrupt-parent = <&gpio2>;
229229
interrupts = <25 0>; /* gpio_57 */
230-
pendown-gpio = <&gpio2 25 GPIO_ACTIVE_HIGH>;
230+
pendown-gpio = <&gpio2 25 GPIO_ACTIVE_LOW>;
231231

232232
ti,x-min = /bits/ 16 <0x0>;
233233
ti,x-max = /bits/ 16 <0x0fff>;

arch/arm/boot/dts/omap3-devkit8000-lcd-common.dtsi

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@
5454

5555
interrupt-parent = <&gpio1>;
5656
interrupts = <27 0>; /* gpio_27 */
57-
pendown-gpio = <&gpio1 27 GPIO_ACTIVE_HIGH>;
57+
pendown-gpio = <&gpio1 27 GPIO_ACTIVE_LOW>;
5858

5959
ti,x-min = /bits/ 16 <0x0>;
6060
ti,x-max = /bits/ 16 <0x0fff>;

arch/arm/boot/dts/omap3-lilly-a83x.dtsi

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -311,7 +311,7 @@
311311
interrupt-parent = <&gpio1>;
312312
interrupts = <8 0>; /* boot6 / gpio_8 */
313313
spi-max-frequency = <1000000>;
314-
pendown-gpio = <&gpio1 8 GPIO_ACTIVE_HIGH>;
314+
pendown-gpio = <&gpio1 8 GPIO_ACTIVE_LOW>;
315315
vcc-supply = <&reg_vcc3>;
316316
pinctrl-names = "default";
317317
pinctrl-0 = <&tsc2048_pins>;

arch/arm/boot/dts/omap3-overo-common-lcd35.dtsi

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -149,7 +149,7 @@
149149

150150
interrupt-parent = <&gpio4>;
151151
interrupts = <18 0>; /* gpio_114 */
152-
pendown-gpio = <&gpio4 18 GPIO_ACTIVE_HIGH>;
152+
pendown-gpio = <&gpio4 18 GPIO_ACTIVE_LOW>;
153153

154154
ti,x-min = /bits/ 16 <0x0>;
155155
ti,x-max = /bits/ 16 <0x0fff>;

0 commit comments

Comments
 (0)