From 17804c20303c8295b05baf2ab9578432ac5c2735 Mon Sep 17 00:00:00 2001 From: Phil Elwell Date: Tue, 31 Oct 2023 16:34:56 +0000 Subject: [PATCH] fixup! arch/arm64: Add Revision, Serial, Model to cpuinfo Delete the Hardware string, which is pointless and misleading. See: https://github.com/raspberrypi/bookworm-feedback/issues/129 Signed-off-by: Phil Elwell --- arch/arm64/kernel/cpuinfo.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/arch/arm64/kernel/cpuinfo.c b/arch/arm64/kernel/cpuinfo.c index 21836c76a3b3e8..76d4ac05384ae1 100644 --- a/arch/arm64/kernel/cpuinfo.c +++ b/arch/arm64/kernel/cpuinfo.c @@ -224,8 +224,6 @@ static int c_show(struct seq_file *m, void *v) seq_printf(m, "CPU revision\t: %d\n\n", MIDR_REVISION(midr)); } - seq_printf(m, "Hardware\t: BCM2835\n"); - np = of_find_node_by_path("/system"); if (np) { if (!of_property_read_u32(np, "linux,revision", &revision))