Commit 91318b29 authored by Linus Torvalds's avatar Linus Torvalds

Merge tag 'devicetree-fixes-for-5.17-2' of git://git.kernel.org/pub/scm/linux/kernel/git/robh/linux

Pull devicetree fixes from Rob Herring:

 - Update some maintainers email addresses

 - Fix handling of elfcorehdr reservation for crash dump kernel

 - Fix unittest expected warnings text

* tag 'devicetree-fixes-for-5.17-2' of git://git.kernel.org/pub/scm/linux/kernel/git/robh/linux:
  dt-bindings: update Roger Quadros email
  MAINTAINERS: sifive: drop Yash Shah
  of/fdt: move elfcorehdr reservation early for crash dump kernel
  of: unittest: update text of expected warnings
parents 54134be6 0c0822bc
...@@ -7,7 +7,6 @@ $schema: http://devicetree.org/meta-schemas/core.yaml# ...@@ -7,7 +7,6 @@ $schema: http://devicetree.org/meta-schemas/core.yaml#
title: SiFive GPIO controller title: SiFive GPIO controller
maintainers: maintainers:
- Yash Shah <yash.shah@sifive.com>
- Paul Walmsley <paul.walmsley@sifive.com> - Paul Walmsley <paul.walmsley@sifive.com>
properties: properties:
......
...@@ -20,7 +20,7 @@ description: | ...@@ -20,7 +20,7 @@ description: |
maintainers: maintainers:
- Kishon Vijay Abraham I <kishon@ti.com> - Kishon Vijay Abraham I <kishon@ti.com>
- Roger Quadros <rogerq@ti.com - Roger Quadros <rogerq@kernel.org>
properties: properties:
compatible: compatible:
......
...@@ -8,7 +8,7 @@ title: OMAP USB2 PHY ...@@ -8,7 +8,7 @@ title: OMAP USB2 PHY
maintainers: maintainers:
- Kishon Vijay Abraham I <kishon@ti.com> - Kishon Vijay Abraham I <kishon@ti.com>
- Roger Quadros <rogerq@ti.com> - Roger Quadros <rogerq@kernel.org>
properties: properties:
compatible: compatible:
......
...@@ -8,7 +8,6 @@ $schema: http://devicetree.org/meta-schemas/core.yaml# ...@@ -8,7 +8,6 @@ $schema: http://devicetree.org/meta-schemas/core.yaml#
title: SiFive PWM controller title: SiFive PWM controller
maintainers: maintainers:
- Yash Shah <yash.shah@sifive.com>
- Sagar Kadam <sagar.kadam@sifive.com> - Sagar Kadam <sagar.kadam@sifive.com>
- Paul Walmsley <paul.walmsley@sifive.com> - Paul Walmsley <paul.walmsley@sifive.com>
......
...@@ -9,7 +9,6 @@ title: SiFive L2 Cache Controller ...@@ -9,7 +9,6 @@ title: SiFive L2 Cache Controller
maintainers: maintainers:
- Sagar Kadam <sagar.kadam@sifive.com> - Sagar Kadam <sagar.kadam@sifive.com>
- Yash Shah <yash.shah@sifive.com>
- Paul Walmsley <paul.walmsley@sifive.com> - Paul Walmsley <paul.walmsley@sifive.com>
description: description:
......
...@@ -7,7 +7,7 @@ $schema: "http://devicetree.org/meta-schemas/core.yaml#" ...@@ -7,7 +7,7 @@ $schema: "http://devicetree.org/meta-schemas/core.yaml#"
title: Bindings for the TI wrapper module for the Cadence USBSS-DRD controller title: Bindings for the TI wrapper module for the Cadence USBSS-DRD controller
maintainers: maintainers:
- Roger Quadros <rogerq@ti.com> - Roger Quadros <rogerq@kernel.org>
properties: properties:
compatible: compatible:
......
...@@ -7,7 +7,7 @@ $schema: http://devicetree.org/meta-schemas/core.yaml# ...@@ -7,7 +7,7 @@ $schema: http://devicetree.org/meta-schemas/core.yaml#
title: TI Keystone Soc USB Controller title: TI Keystone Soc USB Controller
maintainers: maintainers:
- Roger Quadros <rogerq@ti.com> - Roger Quadros <rogerq@kernel.org>
properties: properties:
compatible: compatible:
......
...@@ -7011,12 +7011,6 @@ L: linux-edac@vger.kernel.org ...@@ -7011,12 +7011,6 @@ L: linux-edac@vger.kernel.org
S: Maintained S: Maintained
F: drivers/edac/sb_edac.c F: drivers/edac/sb_edac.c
EDAC-SIFIVE
M: Yash Shah <yash.shah@sifive.com>
L: linux-edac@vger.kernel.org
S: Supported
F: drivers/edac/sifive_edac.c
EDAC-SKYLAKE EDAC-SKYLAKE
M: Tony Luck <tony.luck@intel.com> M: Tony Luck <tony.luck@intel.com>
L: linux-edac@vger.kernel.org L: linux-edac@vger.kernel.org
......
...@@ -648,8 +648,8 @@ void __init early_init_fdt_scan_reserved_mem(void) ...@@ -648,8 +648,8 @@ void __init early_init_fdt_scan_reserved_mem(void)
} }
fdt_scan_reserved_mem(); fdt_scan_reserved_mem();
fdt_init_reserved_mem();
fdt_reserve_elfcorehdr(); fdt_reserve_elfcorehdr();
fdt_init_reserved_mem();
} }
/** /**
......
...@@ -513,24 +513,24 @@ static void __init of_unittest_parse_phandle_with_args(void) ...@@ -513,24 +513,24 @@ static void __init of_unittest_parse_phandle_with_args(void)
memset(&args, 0, sizeof(args)); memset(&args, 0, sizeof(args));
EXPECT_BEGIN(KERN_INFO, EXPECT_BEGIN(KERN_INFO,
"OF: /testcase-data/phandle-tests/consumer-a: #phandle-cells = 3 found -1"); "OF: /testcase-data/phandle-tests/consumer-a: #phandle-cells = 3 found 1");
rc = of_parse_phandle_with_args(np, "phandle-list-bad-args", rc = of_parse_phandle_with_args(np, "phandle-list-bad-args",
"#phandle-cells", 1, &args); "#phandle-cells", 1, &args);
EXPECT_END(KERN_INFO, EXPECT_END(KERN_INFO,
"OF: /testcase-data/phandle-tests/consumer-a: #phandle-cells = 3 found -1"); "OF: /testcase-data/phandle-tests/consumer-a: #phandle-cells = 3 found 1");
unittest(rc == -EINVAL, "expected:%i got:%i\n", -EINVAL, rc); unittest(rc == -EINVAL, "expected:%i got:%i\n", -EINVAL, rc);
EXPECT_BEGIN(KERN_INFO, EXPECT_BEGIN(KERN_INFO,
"OF: /testcase-data/phandle-tests/consumer-a: #phandle-cells = 3 found -1"); "OF: /testcase-data/phandle-tests/consumer-a: #phandle-cells = 3 found 1");
rc = of_count_phandle_with_args(np, "phandle-list-bad-args", rc = of_count_phandle_with_args(np, "phandle-list-bad-args",
"#phandle-cells"); "#phandle-cells");
EXPECT_END(KERN_INFO, EXPECT_END(KERN_INFO,
"OF: /testcase-data/phandle-tests/consumer-a: #phandle-cells = 3 found -1"); "OF: /testcase-data/phandle-tests/consumer-a: #phandle-cells = 3 found 1");
unittest(rc == -EINVAL, "expected:%i got:%i\n", -EINVAL, rc); unittest(rc == -EINVAL, "expected:%i got:%i\n", -EINVAL, rc);
} }
...@@ -670,12 +670,12 @@ static void __init of_unittest_parse_phandle_with_args_map(void) ...@@ -670,12 +670,12 @@ static void __init of_unittest_parse_phandle_with_args_map(void)
memset(&args, 0, sizeof(args)); memset(&args, 0, sizeof(args));
EXPECT_BEGIN(KERN_INFO, EXPECT_BEGIN(KERN_INFO,
"OF: /testcase-data/phandle-tests/consumer-b: #phandle-cells = 2 found -1"); "OF: /testcase-data/phandle-tests/consumer-b: #phandle-cells = 2 found 1");
rc = of_parse_phandle_with_args_map(np, "phandle-list-bad-args", rc = of_parse_phandle_with_args_map(np, "phandle-list-bad-args",
"phandle", 1, &args); "phandle", 1, &args);
EXPECT_END(KERN_INFO, EXPECT_END(KERN_INFO,
"OF: /testcase-data/phandle-tests/consumer-b: #phandle-cells = 2 found -1"); "OF: /testcase-data/phandle-tests/consumer-b: #phandle-cells = 2 found 1");
unittest(rc == -EINVAL, "expected:%i got:%i\n", -EINVAL, rc); unittest(rc == -EINVAL, "expected:%i got:%i\n", -EINVAL, rc);
} }
...@@ -1257,12 +1257,12 @@ static void __init of_unittest_platform_populate(void) ...@@ -1257,12 +1257,12 @@ static void __init of_unittest_platform_populate(void)
unittest(pdev, "device 2 creation failed\n"); unittest(pdev, "device 2 creation failed\n");
EXPECT_BEGIN(KERN_INFO, EXPECT_BEGIN(KERN_INFO,
"platform testcase-data:testcase-device2: IRQ index 0 not found"); "platform testcase-data:testcase-device2: error -ENXIO: IRQ index 0 not found");
irq = platform_get_irq(pdev, 0); irq = platform_get_irq(pdev, 0);
EXPECT_END(KERN_INFO, EXPECT_END(KERN_INFO,
"platform testcase-data:testcase-device2: IRQ index 0 not found"); "platform testcase-data:testcase-device2: error -ENXIO: IRQ index 0 not found");
unittest(irq < 0 && irq != -EPROBE_DEFER, unittest(irq < 0 && irq != -EPROBE_DEFER,
"device parsing error failed - %d\n", irq); "device parsing error failed - %d\n", irq);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment