diff options
author | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2024-08-19 06:02:26 +0200 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2024-08-19 06:02:26 +0200 |
commit | 10c8d1bd786508e996837d5d4b125c69315c5529 (patch) | |
tree | f6c9556a1952ae1f8c32a912fa71e388bdfd89c8 /arch/riscv/kernel/acpi_numa.c | |
parent | kgdbts: fix hw_access_break_test (diff) | |
parent | Linux 6.11-rc4 (diff) | |
download | linux-10c8d1bd786508e996837d5d4b125c69315c5529.tar.xz linux-10c8d1bd786508e996837d5d4b125c69315c5529.zip |
Merge 6.11-rc4 into char-misc-next
We need the char/misc fixes in here as well.
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'arch/riscv/kernel/acpi_numa.c')
-rw-r--r-- | arch/riscv/kernel/acpi_numa.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/riscv/kernel/acpi_numa.c b/arch/riscv/kernel/acpi_numa.c index 0231482d6946..ff95aeebee3e 100644 --- a/arch/riscv/kernel/acpi_numa.c +++ b/arch/riscv/kernel/acpi_numa.c @@ -28,7 +28,7 @@ #include <asm/numa.h> -static int acpi_early_node_map[NR_CPUS] __initdata = { NUMA_NO_NODE }; +static int acpi_early_node_map[NR_CPUS] __initdata = { [0 ... NR_CPUS - 1] = NUMA_NO_NODE }; int __init acpi_numa_get_nid(unsigned int cpu) { |