diff options
author | Andrew Jones <ajones@ventanamicro.com> | 2023-11-22 17:47:03 +0100 |
---|---|---|
committer | Palmer Dabbelt <palmer@rivosinc.com> | 2024-01-03 12:36:48 +0100 |
commit | 53b2b22850e1ff9e2729ce8efe2d846ed7d3bff4 (patch) | |
tree | 305c974293d638943d45ab2f06f3a2c2a1ff48a2 /arch/riscv/kernel/Makefile | |
parent | RISC-V: hwprobe: Clarify cpus size parameter (diff) | |
download | linux-53b2b22850e1ff9e2729ce8efe2d846ed7d3bff4.tar.xz linux-53b2b22850e1ff9e2729ce8efe2d846ed7d3bff4.zip |
RISC-V: Move the hwprobe syscall to its own file
As Palmer says, hwprobe is "sort of its own thing now, and it's only
going to get bigger..."
Suggested-by: Palmer Dabbelt <palmer@dabbelt.com>
Signed-off-by: Andrew Jones <ajones@ventanamicro.com>
Reviewed-by: Conor Dooley <conor.dooley@microchip.com>
Link: https://lore.kernel.org/r/20231122164700.127954-8-ajones@ventanamicro.com
Signed-off-by: Palmer Dabbelt <palmer@rivosinc.com>
Diffstat (limited to 'arch/riscv/kernel/Makefile')
-rw-r--r-- | arch/riscv/kernel/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/riscv/kernel/Makefile b/arch/riscv/kernel/Makefile index fee22a3d1b53..a1f5dc145574 100644 --- a/arch/riscv/kernel/Makefile +++ b/arch/riscv/kernel/Makefile @@ -50,6 +50,7 @@ obj-y += setup.o obj-y += signal.o obj-y += syscall_table.o obj-y += sys_riscv.o +obj-y += sys_hwprobe.o obj-y += time.o obj-y += traps.o obj-y += riscv_ksyms.o |