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.

Merge tag 'soc-fixes-6.17-1' of git://git.kernel.org/pub/scm/linux/kernel/git/soc/soc

Pull SoC fixes from Arnd Bergmann:
"These are a few patches to fix up bits that went missing during the
merge window: The tegra and s3c patches address trivial regressions
from conflicts, the bcm7445 makes the dt conform to the binding that
was made stricter"

* tag 'soc-fixes-6.17-1' of git://git.kernel.org/pub/scm/linux/kernel/git/soc/soc:
arm64: tegra: Remove numa-node-id properties
ARM: s3c/gpio: complete the conversion to new GPIO value setters
ARM: dts: broadcom: Fix bcm7445 memory controller compatible

+7 -7
+6 -3
arch/arm/boot/dts/broadcom/bcm7445.dtsi
··· 237 237 ranges = <0x0 0x0 0x80000>; 238 238 239 239 memc-ddr@2000 { 240 - compatible = "brcm,brcmstb-memc-ddr"; 240 + compatible = "brcm,brcmstb-memc-ddr-rev-b.1.x", 241 + "brcm,brcmstb-memc-ddr"; 241 242 reg = <0x2000 0x800>; 242 243 }; 243 244 ··· 260 259 ranges = <0x0 0x80000 0x80000>; 261 260 262 261 memc-ddr@2000 { 263 - compatible = "brcm,brcmstb-memc-ddr"; 262 + compatible = "brcm,brcmstb-memc-ddr-rev-b.1.x", 263 + "brcm,brcmstb-memc-ddr"; 264 264 reg = <0x2000 0x800>; 265 265 }; 266 266 ··· 283 281 ranges = <0x0 0x100000 0x80000>; 284 282 285 283 memc-ddr@2000 { 286 - compatible = "brcm,brcmstb-memc-ddr"; 284 + compatible = "brcm,brcmstb-memc-ddr-rev-b.1.x", 285 + "brcm,brcmstb-memc-ddr"; 287 286 reg = <0x2000 0x800>; 288 287 }; 289 288
+1 -1
arch/arm/mach-s3c/gpio-samsung.c
··· 516 516 gc->direction_input = samsung_gpiolib_2bit_input; 517 517 if (!gc->direction_output) 518 518 gc->direction_output = samsung_gpiolib_2bit_output; 519 - if (!gc->set) 519 + if (!gc->set_rv) 520 520 gc->set_rv = samsung_gpiolib_set; 521 521 if (!gc->get) 522 522 gc->get = samsung_gpiolib_get;
-3
arch/arm64/boot/dts/nvidia/tegra264.dtsi
··· 11 11 interrupt-parent = <&gic>; 12 12 #address-cells = <2>; 13 13 #size-cells = <2>; 14 - numa-node-id = <0>; 15 14 16 15 reserved-memory { 17 16 #address-cells = <2>; ··· 340 341 status = "okay"; 341 342 342 343 enable-method = "psci"; 343 - numa-node-id = <0>; 344 344 345 345 i-cache-size = <65536>; 346 346 i-cache-line-size = <64>; ··· 356 358 status = "okay"; 357 359 358 360 enable-method = "psci"; 359 - numa-node-id = <0>; 360 361 361 362 i-cache-size = <65536>; 362 363 i-cache-line-size = <64>;